diff --git a/sass/style.scss b/sass/style.scss index 1a34818..9bfddf0 100644 --- a/sass/style.scss +++ b/sass/style.scss @@ -173,7 +173,7 @@ main.main-content div.main-content { font-size: 10pt; text-align: center; list-style-type: none; - margin: 0; + margin: 0 0 4em 0; padding: 0; } @@ -189,6 +189,30 @@ main.main-content div.main-content { content: " • "; } +.home .links { + width: 100%; + max-width: 10in; + margin: auto; + display: flex; + flex-wrap: wrap; + justify-content: space-around; +} + +.home .links .link { + background-color: $background-color; + flex: 0 10em; + margin: 1em; + padding: 0 0 1em 0; + text-align: center; +} + +.home .links svg { + fill: $text-color; + width: 100%; + height: auto; + aspect-ratio: 1 / 1; +} + #songquote { display: none; font-size: 120%; diff --git a/static/bug.svg b/static/bug.svg new file mode 100644 index 0000000..96c6be5 --- /dev/null +++ b/static/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/file-document-outline.svg b/static/file-document-outline.svg new file mode 100644 index 0000000..90831cb --- /dev/null +++ b/static/file-document-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/image.svg b/static/image.svg new file mode 100644 index 0000000..5c61724 --- /dev/null +++ b/static/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/static/post.svg b/static/post.svg new file mode 100644 index 0000000..339f0b3 --- /dev/null +++ b/static/post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index cd33396..c6b16bd 100644 --- a/templates/index.html +++ b/templates/index.html @@ -16,22 +16,31 @@
{{ page.summary }}
-{% else %} -{{ page.content | striptags | split(pat=" ") | slice(end=20) | join(sep=" ") | safe }}{% if page.word_count > 20 %}…{% endif %}
-{% endif %} + {% endblock %}