~dricottone/blog

ref: b6d71d6597e8c942065e419830ebe6aa4f626eec blog/layouts/_default/baseof.html -rw-r--r-- 415 bytes
b6d71d65Dominic Ricottone Bump jquery version 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
{{ partial "head.html" . }}
<body>
  <div id="navi">
    {{ partial "navi.html" . }}
  </div>
  <main>
    <table id="header">
      <tbody>
        <tr><td class="main">Dominic Ricottone</td></tr>
        <tr><td class="sub">Personal Blog and CV</td></tr>
      </tbody>
    </table>
    <div id="content">
      {{ block "main" . }}{{ end }}
    </div>
  </main>
</body>
</html>