diff --git a/README.md b/README.md index e92c91f..7d062f9 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ Simple blog management system. ## Todo -2. Add pagination links 4. Find a nice way to display metadata (author, dates, etc) 5. Allow adding pages (pinned articles ?) 6. Add syntax coloration to code blocks diff --git a/articles/static/style.css b/articles/static/style.css index 2584eb3..e12dd07 100644 --- a/articles/static/style.css +++ b/articles/static/style.css @@ -43,26 +43,32 @@ article.article-list h2 a { text-decoration: none; } -@media (prefers-color-scheme: dark) { - :root { - --accent: #226997; - --main: #eeeeee; - /*--main2: #cecece;*/ - /*--main3: #b1b1b1;*/ - --background: #111111; - /*--background2: #575656;*/ - } - - img { - opacity: .75; - transition: opacity .5s ease-in-out; - } - img:hover { - opacity: 1; - } - - #manage ul ul li img { - opacity: 1; - filter: invert(1); - } +.pagination { + display: flex; + justify-content: space-between; +} + +@media (prefers-color-scheme: dark) { + :root { + --accent: #226997; + --main: #eeeeee; + /*--main2: #cecece;*/ + /*--main3: #b1b1b1;*/ + --background: #111111; + /*--background2: #575656;*/ + } + + img { + opacity: .75; + transition: opacity .5s ease-in-out; + } + + img:hover { + opacity: 1; + } + + #manage ul ul li img { + opacity: 1; + filter: invert(1); + } } diff --git a/articles/templates/articles/article_list.html b/articles/templates/articles/article_list.html index e6c6ae1..5273af5 100644 --- a/articles/templates/articles/article_list.html +++ b/articles/templates/articles/article_list.html @@ -12,4 +12,16 @@ {% empty %}
No article here. Come back later 🙂
{% endfor %} + {% endblock %}