aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2022-11-06 03:40:35 +0300
committerValentin Popov <valentin@popov.link>2022-11-06 03:40:35 +0300
commitb099f7b25b881b40e658ba917bf2e051f626be1f (patch)
tree712c1e5c0c8dd5637b79603f87b876f7c1af8e01
parent060597b9dbb25a34337a23c49c387e8c51b7618e (diff)
downloadpopov.link-b099f7b25b881b40e658ba917bf2e051f626be1f.tar.xz
popov.link-b099f7b25b881b40e658ba917bf2e051f626be1f.zip
Removed foobar and updated navbar
Signed-off-by: Valentin Popov <valentin@popov.link>
-rw-r--r--sass/_framework.scss22
-rw-r--r--templates/base.html12
2 files changed, 2 insertions, 32 deletions
diff --git a/sass/_framework.scss b/sass/_framework.scss
index dbfd15b..d03c17c 100644
--- a/sass/_framework.scss
+++ b/sass/_framework.scss
@@ -8,7 +8,6 @@
html {
font-family: $font-family-base;
font-size: 62.5%;
- height: 100%;
overflow-y: scroll;
}
@@ -18,7 +17,6 @@ body {
font-feature-settings: $font-feature;
font-size: $font-size-base;
font-synthesis: none;
- height: 100%;
line-height: 1.54;
margin: auto;
max-width: 60em;
@@ -246,24 +244,4 @@ fieldset {
display: block;
font-weight: 600;
margin-bottom: 0.5rem;
-}
-
-article {
- min-height: 100%;
-}
-
-@media (max-width: 684px) {
- article {
- min-height: auto;
- }
-}
-
-footer {
- text-align: left;
-}
-
-@media (max-width: 684px) {
- footer {
- display: none;
- }
} \ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index 400a523..96040bd 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -23,22 +23,14 @@
<nav>
<a href="/">Home</a>
<a href="/blog">Blog</a>
+ <span>|</span>
+ <a href="{{ get_url(path='atom.xml', trailing_slash=false) | safe }}">RSS</a>
</nav>
</header>
<article>
{% block content %}{% endblock %}
</article>
-
- <footer>
- <small>
- <span>{{ now() | date(format='%Y') | safe }}</span>
- <span>&#169;</span>
- <a href="mailto:hi@popov.link">Valentin Popov</a>
- <span>|</span>
- <a href="{{ get_url(path='atom.xml', trailing_slash=false) | safe }}">RSS</a>
- </small>
- </footer>
</body>
</html> \ No newline at end of file