website/themes/hugo-theme-wave/layouts/index.html

19 lines
474 B
HTML
Raw Normal View History

2020-01-12 21:05:46 +01:00
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
2020-02-09 11:50:54 +01:00
{{ partial "head" . }}
<body>
<div class="container">
<div id="container">
{{ partial "header" . }}
<!--{{ partial "home" . }}-->
<div class="outer">
{{ partial "article_list" . }}
{{ partial "sidebar" . }}
</div>
2020-01-12 21:05:46 +01:00
</div>
2020-01-12 14:14:15 +01:00
</div>
2020-02-09 11:50:54 +01:00
{{ partial "footer" . }}
2020-03-11 16:58:12 +01:00
{{ partial "footer_js" . }}
2020-02-09 11:50:54 +01:00
</body>
</html>