~dricottone/blog

ref: b2430213ba6ce6a51eddb7f403c039dd00d1fc89 blog/layouts/_default/baseof.html -rw-r--r-- 545 bytes
b2430213Dominic Ricottone Layout and CSS updates 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!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>
  <div id="footer">
    generated by <a href="https://gohugo.io/">Hugo</a> at {{ now.Format "2006-01-02 13:04:05 MST" }}
  </div>
</body>
</html>