diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.html.twig | 1 | ||||
-rw-r--r-- | templates/partials/header.html.twig | 11 |
2 files changed, 2 insertions, 10 deletions
diff --git a/templates/page.html.twig b/templates/page.html.twig index dc2c9ed..1291aaf 100644 --- a/templates/page.html.twig +++ b/templates/page.html.twig @@ -14,6 +14,7 @@ <div class="center"> <div class="content"> {{ page.content|raw }} + {% include 'partials/navigation.html.twig' %} </div> </div> <div class=footer> diff --git a/templates/partials/header.html.twig b/templates/partials/header.html.twig index 027d723..7da672d 100644 --- a/templates/partials/header.html.twig +++ b/templates/partials/header.html.twig @@ -10,20 +10,11 @@ {% else %} <span class="icon" style="color: white;">home</span> {% endif %} - - {% if page.parent.url != "/" %} - <a class="anim4" href="/"> - <div class="roundedButton"> - <span class="icon">home</span> - <span>Home</span> - </div> - </a> - {% endif %} </div> <div id="center"> {% if page.url != "/" %} - <a href="/" style="color:white;">{{site.title|e}}</a> + <a href="/" class="white">{{site.title|e}}</a> {% endif %} </div> |