Images are no longer super blown up on desktop devices, images are now limited in size according to the current article width. On large displays, the article width is now limited so the text is actually readable.
12 lines
447 B
HTML
12 lines
447 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}" prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb#">
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
<header>{{- partial "header.html" . -}}</header>
|
|
<div id="content">
|
|
<aside>{{- partial "sidebar.html" . -}}</aside>
|
|
<article>{{- block "main" . }}{{- end }}</article>
|
|
</div>
|
|
<footer>{{- partial "footer.html" . -}}</footer>
|
|
</body>
|
|
</html>
|