diff --git a/src/pages/sitemap.xml b/src/pages/sitemap.xml deleted file mode 100644 index 80ce1c854..000000000 --- a/src/pages/sitemap.xml +++ /dev/null @@ -1,39 +0,0 @@ ---- -layout: none ---- - -{% if page.xsl %} - -{% endif %} - - {% assign collections = site.collections | where_exp:'collection','collection.output != false' %} - {% for collection in collections %} - {% assign docs = collection.docs | where_exp:'doc','doc.sitemap != false' %} - {% for doc in docs %} - - {{ doc.url | replace:'/index.html','/' | absolute_url | xml_escape }} - {% if doc.last_modified_at or doc.date %} - {{ doc.last_modified_at | default: doc.date | date_to_xmlschema }} - {% endif %} - - {% endfor %} - {% endfor %} - - {% assign pages = site.html_pages | where_exp:'doc','doc.sitemap != false' | where_exp:'doc','doc.url != "/404.html"' %} - {% for page in pages %} - - {{ page.url | replace:'/index.html','/' | absolute_url | xml_escape }} - {% if page.last_modified_at %} - {{ page.last_modified_at | date_to_xmlschema }} - {% endif %} - - {% endfor %} - - {% assign static_files = page.static_files | where_exp:'page','page.sitemap != false' | where_exp:'page','page.name != "404.html"' %} - {% for file in static_files %} - - {{ file.path | replace:'/index.html','/' | absolute_url | xml_escape }} - {{ file.modified_time | date_to_xmlschema }} - - {% endfor %} - diff --git a/src/scss/_utilities.scss b/src/scss/_utilities.scss index 82966d10c..b7a151338 100644 --- a/src/scss/_utilities.scss +++ b/src/scss/_utilities.scss @@ -57,13 +57,9 @@ $utilities: ( "font-weight": ( property: font-weight, values: ( - light: 300, - normal: 400, - medium: 500, - semibold: 600, - bold: 700, - extrabold: 800, - black: 900, + light: $font-weight-light, + normal: $font-weight-normal, + bold: $font-weight-bold, ) ), "border": ( diff --git a/src/scss/_variables.scss b/src/scss/_variables.scss index 4c01be03c..fc049e7b2 100644 --- a/src/scss/_variables.scss +++ b/src/scss/_variables.scss @@ -27,8 +27,9 @@ $icon-stroke-width: 1.5 !default; //Fonts $font-size-base: .875rem !default; +$font-weight-light: 300 !default; $font-weight-normal: 400 !default; -$font-weight-bold: 500 !default; +$font-weight-bold: 600 !default; $body-letter-spacing: 0 !default; $line-height-base: (1.5rem/$font-size-base) !default;