feat(theme): skeleton implementation
parent
ebb741fa9b
commit
9c2df1086d
|
|
@ -1,11 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
<div class="container">
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
<div class="row">
|
||||
<div class="one-half column" style="margin-top: 25%">
|
||||
<p>copyright (c) 2021 steven ye</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>MT_TITLE</title>
|
||||
<meta name="description" content="MT_DESC">
|
||||
<meta name="author" content="MT_AUTHOR">
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="stylesheet" href="css/normalize.css">
|
||||
<link rel="stylesheet" href="css/skeleton.css">
|
||||
|
||||
<link rel="icon" type="image/png" href="images/favicon.png">
|
||||
|
||||
</head>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
<div class="row">
|
||||
<div class="one-half column" style="margin-top: 25%">
|
||||
<h4>MT_SITE_TITLE</h4>
|
||||
<p>MT_SITE_SUBTITLE</p>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in New Issue