diff --git a/blog/archive.html b/blog/archive.html index f2cb3fc..adb6928 100644 --- a/blog/archive.html +++ b/blog/archive.html @@ -12,8 +12,27 @@ back: 2
- {% for post in site.categories.en %} -

{{ post.date | date_to_string}} » {{ post.title }} ({{ post.tags }})

+ {% for post in site.categories.en limit:1 %} + {% assign month = post.date | date: "%B, %Y" %} {% endfor %} + + diff --git a/blog/index.html b/blog/index.html index 1c7331e..95ac5b0 100644 --- a/blog/index.html +++ b/blog/index.html @@ -15,7 +15,7 @@ back: 1 {% for post in site.categories.en limit:10 %}

{{ post.title }}

-

{{ post.date | date_to_string}}

+

{{ post.date | date_to_string }}

{{ post.description }}

Tags: {{ post.tags }}

{% endfor %} diff --git a/resources/css/styles.css b/resources/css/styles.css index 173ee10..38ace79 100644 --- a/resources/css/styles.css +++ b/resources/css/styles.css @@ -1,3 +1,30 @@ +.spoiler { + display: block; + background: #dcdcdc; + text-decoration: none; + color: #555555; + border: 1px solid #000000; + border-radius: 5px; + padding: 0 5px 0 5px; + margin: 0 0 5px 0; +} +.spoiler > .title { + font-weight: bold; +} +.spoiler > .body { + padding: 4px; + font-weight: 300; + font-size: 11pt; + text-align: justify; + display: none; +} +.spoiler > .bo { + display: none; +} +.spoiler > :checked ~ .body { + display: block; +} + /* Liberation font ^^ */ @font-face { font-family: "Liberation Serif"; diff --git a/ru/blog/archive.html b/ru/blog/archive.html index 528f9d4..df4bc62 100644 --- a/ru/blog/archive.html +++ b/ru/blog/archive.html @@ -13,8 +13,27 @@ back: 2
- {% for post in site.categories.ru%} -

{{ post.date | date_to_string}} » {{ post.title }} ({{ post.tags }})

+ {% for post in site.categories.ru limit:1 %} + {% assign month = post.date | date: "%B, %Y" %} {% endfor %} + + diff --git a/ru/blog/index.html b/ru/blog/index.html index e99c081..32ce5bc 100644 --- a/ru/blog/index.html +++ b/ru/blog/index.html @@ -16,7 +16,7 @@ back: 1 {% for post in site.categories.ru limit:10 %}

{{ post.title }}

-

{{ post.date | date_to_string}}

+

{{ post.date | date_to_string }}

{{ post.description }}

Тэги: {{ post.tags }}

{% endfor %} diff --git a/sitemap.xml b/sitemap.xml index 6cf8573..4b3c86f 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -31,6 +31,12 @@ projects: http://arcan1s.github.io/ru/blog/ + + http://arcan1s.github.io/blog/archive/ + + + http://arcan1s.github.io/ru/blog/archive/ + {% for post in site.posts %} http://arcan1s.github.io{{ post.url }}