diff options
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/templates/index.html b/templates/index.html index 6d0c139..006643a 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,12 +7,16 @@  <% include!("header.html"); %>  <main class="container">      <section> +            A gathering of information about some things I do on my spare time. +            You can find me on gitlab, twitter and linkedin. +    </section> +    <section>          <ul>          <% for p in &posts { %> -            <li><a href="/posts/<%- p %>"><%- p %></a></li> +            <li><a href="/posts/<%- p.file %>"><%- p.title %></a></li>          <% } %>          </ul>      </section>  </main>  </body> -</html>
\ No newline at end of file +</html> | 
