Initial version of hugo-stack
This commit is contained in:
commit
e19eb92b4b
28 changed files with 487 additions and 0 deletions
26
exampleSite/layouts/_default/baseof.html
Normal file
26
exampleSite/layouts/_default/baseof.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="{{ with .Site.Language.Lang }}{{ . }}{{ else }}en-US{{ end }}">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<style>
|
||||
.container {
|
||||
padding: 20%;
|
||||
box-sizing: border-box
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
<main id="main-content">
|
||||
<div class="container">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue