diff options
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 75d108c..b903da3 100644 --- a/templates/base.html +++ b/templates/base.html @@ -5,16 +5,32 @@ <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" /> <link rel="canonical" href="{{- current_url|safe -}}" /> <link rel="stylesheet" href="/css/custom.css" /> + <link rel="stylesheet" href="/css/carousel.css" /> <meta name="author" content="{{- config.author -}}" /> <meta name="description" content="{%- block description -%}{{- config.description -}}{%- endblock description -%}" /> <link rel="alternate" type="application/atom+xml" title="Blog posts" href="{{ get_url(path="/feed.xml", trailing_slash=false) }}" /> + <script src="/js/carousel.js"></script> <title>{% block title %}{{- config.title -}}{% endblock title %}</title> </head> <body> - {% block content %}{% endblock content %} + <div class="container"> + <nav class="menu"> + <ul> + <li><a href="/">Home</a></li> + <li><a href="/blog">Blog</a></li> + <li><a href="/notes">Notes</a></li> + <li><a href="/about">About</a></li> + <li><a href="https://git.fcuny.net">Code</a></li> + </ul> + </nav> + + <div class="content"> + {% block content %}{% endblock content %} + </div> + </div> </body> </html> |
