diff options
author | luxagraf <sng@luxagraf.net> | 2014-06-24 12:05:46 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2014-06-24 12:05:46 -0400 |
commit | cc70aa809252899dfd062feb241aaecede66bd02 (patch) | |
tree | ed0468f58a240d1c46d7532eddb3c40e455ee4ff /design/templates/base.html | |
parent | 78d265997ac26aecfb350ccf497ec2de3f3fad4b (diff) |
Rewrote all sass and reconfigured HTML to use more microformats and
clearer class names
Diffstat (limited to 'design/templates/base.html')
-rw-r--r-- | design/templates/base.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/design/templates/base.html b/design/templates/base.html index c3d0b72..5c9ca21 100644 --- a/design/templates/base.html +++ b/design/templates/base.html @@ -15,7 +15,7 @@ title="Luxagraf RSS feed" href="https://luxagraf.net/rss/"> {%block stylesheet%}<link rel="stylesheet" - href="/media/stylesv6.css" + href="/media/screenv8.css" media="screen">{%endblock%} <!--[if IE]> <link rel="stylesheet" @@ -25,22 +25,24 @@ {%block extrahead%}{%endblock%} </head> <body {%block bodyid%}{%endblock%}{%block bodyevents%}{%endblock%}> - <header role="banner"> - <a id="logo" href="/" title="home"> - <h1>Luxagraf</h1> - <h2>{Walk Slowly}</h2> - </a> + <div class="wrapper"> + <div class="header-wrapper"> + <header role="banner"> + <h1><a id="logo" href="/" title="home">Luxagraf</a></h1> + <h2>Walk Slowly</h2> + </header> <nav role="navigation" class="bl"> <ul> - <li id="stories"><a href="/writing/" title="An archive of writings from around the world">Writing</a>,</li> - <li id="photos"><a href="/photos/" title="Photos from travels around the world">Photos</a>,</li> + <li id="stories"><a href="/writing/" title="An archive of writings from around the world">Writing</a></li> + <li id="photos"><a href="/photos/" title="Photos from travels around the world">Photos</a></li> <!--<li id="guides"><a href="/travel-guide/1/" title="Travel Guides, Tips, Tricks and Recommendations">Guides</a>,</li>--> - <li id="maps"><a href="/map/" title="Maps and miscellanea">Map</a>,</li> - <li id="projects" ><a href="/projects/" title="Luxagraf: Projects">Projects</a>,</li> - <li id="etc"><a href="/about/" title="About Luxagraf">Etc</a></li> + <li id="notes"><a href="/notes/" title="Short thoughts, sometimes syndicated to twitter">Notes</a></li> + <li id="maps"><a href="/map/" title="Maps and miscellanea">Map</a></li> + <li id="projects" ><a href="/projects/" title="Luxagraf: Projects">Projects</a></li> + <li id="etc" class="last"><a href="/about/" title="About Luxagraf">Etc</a></li> </ul> </nav> - </header> + </div> {% block primary %}{% endblock %} {% block extrabody %}{% endblock %} <footer role="contentinfo"> |