verso2

A simple web framework.
git clone git://git.chappelle.dev/verso2.git
Log | Files | Refs | README | LICENSE

header.html (1156B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4     <meta charset="UTF-8">
      5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
      6     <meta name="author" content="{{AUTHOR}}">
      7     <meta name="description" content="{{SITE_DESCRIPTION}}">
      8     <title>{{TITLE}} - {{SITE_TITLE}}</title>
      9     <link rel="icon" type="image/png" href="/assets/favicon.png">
     10     <link rel="stylesheet" href="/assets/style.css">
     11     <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/blog/feed.xml">
     12 </head>
     13 <body>
     14   <header>
     15     <nav>
     16         <table>
     17             <tr>
     18                 <td class="logo">
     19                   <strong><a href="/">
     20 <pre>
     21 ███████╗
     22 ██╔════╝
     23 ██║     
     24 ██║     
     25 ╚██████╗
     26  ╚═════╝</pre>
     27                   <a></strong>
     28                 </td>
     29                 <td class="links">
     30                     {{NAV}}
     31                 </td>
     32             </tr>
     33         </table>
     34     </nav>
     35   </header>
     36   <hr>
     37 <main class="container">
     38   <article>
     39     <header class="post-meta">
     40       <h1>{{TITLE}}</h1>
     41       {{META_LINE}}
     42     </header>
     43     {{CONTENT}}
     44   </article>
     45 </main>