diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/page.html.erb | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/bin/page.html.erb b/bin/page.html.erb index 2dee55e..6f56573 100644 --- a/bin/page.html.erb +++ b/bin/page.html.erb @@ -8,21 +8,23 @@ <%= @page.head %> </head> <body> - <header><%= @page.breadcrumbs %></header> - <header id="logobar"> - <h1>Andrew DM</h1> - <ul> - <li><a href="">Projects</a></li> - <li><a href="blahg/CHANGELOG.html"><abbr title="Blog">Blahg</abbr></a></li> - <li><a href="Andrew.html">Andrew</a></li> - <li> - <form class="headerlink" method="GET" action="index.html#"> - <input id="search" style="hidden" type="text" name="searchbar" size="0" placeholder="Search" /> - </form> - </li> + <header> + <h1>Andrew D. Murrell</h1> + <p><%= @page.breadcrumbs %></p> + <nav> + <ul> + <li><a href="/">Projects</a> + <li><a href="/blahg/CHANGELOG.html"><abbr title="Blog">Blahg</abbr></a> + <li><a href="/Andrew.html">Andrew</a> + <li> + <form method="GET" action="/search.html"> + <input type=search name="s" placeholder="Search" /><input type=submit value="🔍" /> + </form> + </ul> + </nav> </header> <article> - <h1><%= @page.title %></h1> + <h1 class=title><%= @page.title %></h1> <%= @page.content %> </article> <footer> |