diff options
Diffstat (limited to 'tmpl/page.html.erb')
-rw-r--r-- | tmpl/page.html.erb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tmpl/page.html.erb b/tmpl/page.html.erb new file mode 100644 index 0000000..5dc95ea --- /dev/null +++ b/tmpl/page.html.erb @@ -0,0 +1,35 @@ +<% require 'siteutil' %><!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <title><%= atom_title %> — AndrewDM</title> + <link rel="stylesheet" href="/main.css"> + <link rel="alternate" type="application/atom+xml" href="/index.atom" /> + <%= html_head_extra %> + </head> + <body class="<%= html_class %>"> + <header> + <h1 class=breadcrumbs><%= Sitegen::breadcrumbs(url) %></h1> + <nav> + <ul> + <li><a href="/">Projects</a> + <li><a href="/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> + <% if atom_categories.count > 0 %><p>Tags: <% atom_categories.each do |t| %><%= t.html %><% end %></p><% end %> + <%= atom_content %> + </article> + <footer> + <%= atom_rights %> + <% if local_srcurl %><p>Page source: <a href="<%= url.route_to(local_srcurl) %>"><%= File.basename(local_srcurl.to_s) %></a></p><% end %> + <p>Website source: <a href="https://git.andrewdm.me/www.git">www.git</a></p> + </footer> + </body> +</html> |