diff --git a/site_test/archive.html b/site_test/archive.html index c6d9116..20e4a99 100644 --- a/site_test/archive.html +++ b/site_test/archive.html @@ -7,16 +7,19 @@ {% block content -%} {% for year in years %} - + + {% if not loop.last %} +
+ {% endif %} {% endfor %} {%- endblock %} diff --git a/site_test/css/main.scss b/site_test/css/main.scss index f57dcc2..11ddc1f 100644 --- a/site_test/css/main.scss +++ b/site_test/css/main.scss @@ -116,7 +116,7 @@ table { } hr { - border: 1px solid black; + border: 1px solid var(--secondary-text-color); } html { @@ -376,11 +376,17 @@ footer { } .archive-list { - padding: 0; - font-size: 1.5rem; + display: flex; + flex-direction: column; + gap: 4px; + font-size: 1.25rem; + margin: 1rem 0; - li { - list-style: none; + .archive-entry { + display: flex; + flex-direction: row; + align-items: start; + gap: 8px; time { color: var(--secondary-text-color); diff --git a/site_test/layout/tag.html b/site_test/layout/tag.html index 9fd6a7b..822a799 100644 --- a/site_test/layout/tag.html +++ b/site_test/layout/tag.html @@ -9,16 +9,19 @@

Posts tagged ‘{{ tag_name }}’

{% for year in years %} - + + {% if not loop.last %} +
+ {% endif %} {% endfor %} {%- endblock %}