website/layouts/index.html

22 lines
418 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-01-12 14:14:15 +01:00
{{ partial "head" . }}
2020-01-12 21:05:46 +01:00
<body>
<div class="container">
<div id="container">
{{ partial "header" . }}
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
<!--{{ partial "home" . }}-->
<div class="outer">
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
{{ partial "article_list" . }}
{{ partial "sidebar" . }}
2020-01-12 14:14:15 +01:00
2020-01-12 21:05:46 +01:00
</div>
2020-01-12 14:14:15 +01:00
</div>
2020-01-12 21:05:46 +01:00
</div>
{{ partial "footer" . }}
2020-01-12 14:14:15 +01:00
</body>
2020-01-12 21:05:46 +01:00
</html>