diff --git a/_config.yml b/_config.yml index 6c835930..30ab6b6e 100644 --- a/_config.yml +++ b/_config.yml @@ -1,12 +1,12 @@ # Site settings -title: Strata # Title of your site +title: Strata # Type the title of your site here email: your-email@domain.com # Your contant email +avatar: /images/avatar.jpg # Put your avatar in the images folder and replace avatar.jpg with the name of your file + +description: Write an awesome description
for your site here.
Feel free to use some basic HTML
formating to make it even cooler. + -description: > # this means to ignore newlines until "baseurl:" - Write an awesome description for your new site here. You can edit this - line in _config.yml. It will appear in your document head meta (for - Google search results) and in your feed.xml site description. baseurl: "" # the subpath of your site, e.g. /blog/ url: "http://yourdomain.com" # the base hostname & protocol for your site diff --git a/_layouts/default.html b/_layouts/default.html index e0f4215d..4d1d6f7c 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,7 +1,7 @@ - Strata by HTML5 UP + {{ site.title }} @@ -21,10 +21,8 @@ diff --git a/_layouts/post.html b/_layouts/post.html index b11cd1ba..3238a045 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -4,18 +4,18 @@
-

{{ page.title }}

+

{{ site.title }}

{{ content }}
- +
{% endif %} - + {% if page.next %} - +

{{ page.next.title }}

diff --git a/index.html b/index.html index 70fc6c2c..bdded3c4 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@
{% for post in site.posts limit:1 %}
-

{{ post.title }}

+

{{ post.title | site.title }}