Skip to content

Commit

Permalink
Fix #11 hardcoded site.title "Grav" in templates
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviocopes committed Apr 7, 2016
1 parent 4f6455f commit c00eeff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/modular.html.twig
Expand Up @@ -38,7 +38,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{{ base_url == '' ? '/' : base_url }}">Grav</a>
<a class="navbar-brand" href="{{ base_url == '' ? '/' : base_url }}">{{ site.title|e('html') }}</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
Expand Down
2 changes: 1 addition & 1 deletion templates/partials/navigation.html.twig
Expand Up @@ -7,7 +7,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{{ base_url == '' ? '/' : base_url }}">Grav</a>
<a class="navbar-brand" href="{{ base_url == '' ? '/' : base_url }}">{{ site.title|e('html') }}</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
Expand Down

0 comments on commit c00eeff

Please sign in to comment.