diff options
| -rw-r--r-- | _layouts/post.html | 5 | ||||
| -rw-r--r-- | blog.html | 2 | ||||
| -rw-r--r-- | style.css | 7 |
3 files changed, 12 insertions, 2 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 8271e64..6230f81 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -15,8 +15,11 @@ <h2> <center>{{ page.date | date_to_string }} | By: {{ page.author }}</center> </h2> + <p> + <center><a href="./blog.html"><i class="fas fa-arrow-left"></i> Other posts</a></center> + </p> </div> - <div class="container"> + <div class="container-post"> {{ content }} </div> @@ -11,7 +11,7 @@ <BODY> {% include navigator.html %} <div class="jumbotron"> - <h1 class="title">Blog</h1> + <h1 class="title">Blog <a href="feed.xml"><i class="fas fa-rss-square"></i></a></h1> </div> <div class="container"> @@ -153,6 +153,13 @@ li a:hover { margin: 10px; } +.container-blog { + width:50%; + margin:auto; + background-color: black; + overflow:hidden; +} + .row-cards { display: -ms-flexbox; |
