From: Kai Moritz <km@feder-software.de>
Date: Mon, 23 Dec 2013 22:12:01 +0000 (+0100)
Subject: Outline durch Korrektur des semantischen Markup weiter verbessert
X-Git-Tag: thymeroot-2.0.0~147
X-Git-Url: http://juplo.de/gitweb/?a=commitdiff_plain;h=4415d352a10a18d29df92e5bf27dbfde07cbc3fa;p=website

Outline durch Korrektur des semantischen Markup weiter verbessert
---

diff --git a/src/main/webapp/WEB-INF/templates/html5page.jsp b/src/main/webapp/WEB-INF/templates/html5page.jsp
index 2512e07a..de699e27 100644
--- a/src/main/webapp/WEB-INF/templates/html5page.jsp
+++ b/src/main/webapp/WEB-INF/templates/html5page.jsp
@@ -14,7 +14,7 @@
   <body onload="prettyPrint()">
     <div id="page" class="<t:getAsString name="contentclass"/> cf">
       <header id="header">
-        <a href="${base}index.html" title="Home" id="logo">juplo</a>
+        <h1 id="logo"><a href="${base}index.html" title="Home" class="l">juplo</a></h1>
         <span id="slogan"><strong>Java</strong> bits from nerds for nerds</span>
         <hr class="h" />
       </header>
@@ -26,7 +26,7 @@
         <a class="hide" href="#navigation">Jump to navigation</a>
         <div class="b"></div>
       </div>
-      <div class="content cf">
+      <main class="content cf">
         <article id="content" class="main">
           <header><h1><t:getAsString name="title"/></h1></header>
           <t:insertAttribute name="maincontent"/>
@@ -40,7 +40,7 @@
           </nav>
           <t:insertAttribute name="marginalcontent" ignore="true"/>
         </div>
-      </div>
+      </main>
       <footer id="footer">
         <hr />
         <ul id="footerlinks">
diff --git a/src/main/webapp/less/base/head.less b/src/main/webapp/less/base/head.less
index b1368efa..6c9da2df 100644
--- a/src/main/webapp/less/base/head.less
+++ b/src/main/webapp/less/base/head.less
@@ -6,17 +6,20 @@
 }
 #logo
 {
+  display: inline;
   font-size: 400%;
   line-height: 1.2em;
+  margin: 0;
   padding: 0 0 0 .230769231em; /* 30px */
   color: @normal;
   border: none;
   position: relative;
   left: -.3em;
 }
-#logo:hover
+#logo a.l:hover
 {
   color: @dunkler;
+  border-style: none;
 }
 #slogan
 {