diff --git a/_config.yml b/_config.yml index bfb56328..a377fa6f 100644 --- a/_config.yml +++ b/_config.yml @@ -1,8 +1,8 @@ title: Site Title tagline: A short tagline description: Describe your website. -#Comment out url when working locally to resolve base urls correctly -url: http://your-site.com +# Your site's domain goes here. Leave localhost server or blank when working locally. +url: http://localhost:4000 # Owner/author information owner: @@ -31,11 +31,11 @@ bing_verify: # For external links add external: true links: - title: About - url: /about + url: /about/ - title: Articles - url: /articles + url: /articles/ - title: Theme Setup - url: /theme-setup + url: /theme-setup/ - title: Made Mistakes url: http://mademistakes.com external: true diff --git a/_includes/author-bio.html b/_includes/_author-bio.html similarity index 100% rename from _includes/author-bio.html rename to _includes/_author-bio.html diff --git a/_includes/browser-upgrade.html b/_includes/_browser-upgrade.html similarity index 100% rename from _includes/browser-upgrade.html rename to _includes/_browser-upgrade.html diff --git a/_includes/footer.html b/_includes/_footer.html similarity index 100% rename from _includes/footer.html rename to _includes/_footer.html diff --git a/_includes/head.html b/_includes/_head.html similarity index 100% rename from _includes/head.html rename to _includes/_head.html diff --git a/_includes/navigation.html b/_includes/_navigation.html similarity index 100% rename from _includes/navigation.html rename to _includes/_navigation.html diff --git a/_includes/scripts.html b/_includes/_scripts.html similarity index 100% rename from _includes/scripts.html rename to _includes/_scripts.html diff --git a/_layouts/home.html b/_layouts/home.html index 39e56816..24e7687e 100644 --- a/_layouts/home.html +++ b/_layouts/home.html @@ -4,27 +4,27 @@ -{% include head.html %} +{% include _head.html %} -{% include browser-upgrade.html %} +{% include _browser-upgrade.html %} -{% include navigation.html %} +{% include _navigation.html %} {% if page.image.feature %}
{{ page.title }} feature image {% if page.image.credit %}Photo Credit: {{ page.image.credit }}{% endif %}
{% endif %} -
- {% include author-bio.html %} +
+ {% include _author-bio.html %}
-

Articles

- {% for post in site.categories.articles limit:5 %} +

Articles

+ {% for post in site.posts limit:5 %}

{{ post.title }}

{% if post.description %}{{ post.description }}{% else %}{{ post.content | strip_html | strip_newlines | truncate: 120 }}{% endif %}

@@ -34,11 +34,11 @@ -{% include scripts.html %} +{% include _scripts.html %} \ No newline at end of file diff --git a/_layouts/page.html b/_layouts/page.html index 9466931e..371197de 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -4,14 +4,14 @@ -{% include head.html %} +{% include _head.html %} -{% include browser-upgrade.html %} +{% include _browser-upgrade.html %} -{% include navigation.html %} +{% include _navigation.html %} {% if page.image.feature %}
{{ page.title }} feature image @@ -19,8 +19,8 @@
{% endif %}
-