fix folder structure
This commit is contained in:
parent
31afed495e
commit
e28a9b171b
67 changed files with 0 additions and 20 deletions
11
layouts/404.html
Normal file
11
layouts/404.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 Page</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>It seems you got lost....</h1>
|
||||
</body>
|
||||
</html>
|
11
layouts/_default/baseof.html
Normal file
11
layouts/_default/baseof.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
11
layouts/_default/list.html
Normal file
11
layouts/_default/list.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>List</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>This is list page....</h1>
|
||||
</body>
|
||||
</html>
|
11
layouts/_default/single.html
Normal file
11
layouts/_default/single.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Single</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>This is single page</h1>
|
||||
</body>
|
||||
</html>
|
11
layouts/index.html
Normal file
11
layouts/index.html
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>This is index page.</h1>
|
||||
</body>
|
||||
</html>
|
0
layouts/partials/footer.html
Normal file
0
layouts/partials/footer.html
Normal file
0
layouts/partials/head.html
Normal file
0
layouts/partials/head.html
Normal file
0
layouts/partials/header.html
Normal file
0
layouts/partials/header.html
Normal file
Loading…
Add table
Add a link
Reference in a new issue