mirror of
https://github.com/silverstripe/silverstripe-simple
synced 2024-10-22 11:05:50 +02:00
dcb26096f5
- Make the font colour in the footer darker - change the hamburger span in the header to a button - update the javascript to select the button - update the meta viewport to the latest recommended method - Undo unrelated changes
20 lines
471 B
Scheme
20 lines
471 B
Scheme
<header class="header" role="banner">
|
|
<div class="inner">
|
|
<div class="unit size4of4 lastUnit">
|
|
<a href="$BaseHref" class="brand" rel="home">
|
|
<h1>$SiteConfig.Title</h1>
|
|
<% if $SiteConfig.Tagline %>
|
|
<p>$SiteConfig.Tagline</p>
|
|
<% end_if %>
|
|
</a>
|
|
<% if $SearchForm %>
|
|
<button class="search-dropdown-icon">L</button>
|
|
<div class="search-bar">
|
|
$SearchForm
|
|
</div>
|
|
<% end_if %>
|
|
<% include Navigation %>
|
|
</div>
|
|
</div>
|
|
</header>
|