Initial commit
This commit is contained in:
commit
7139f74b18
8 changed files with 942 additions and 0 deletions
3
examples/templates/icons/material/favicon.svg
Normal file
3
examples/templates/icons/material/favicon.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" height="24px" width="24px" viewBox="0 -960 960 960" fill="#e3e3e3">
|
||||
<path d="m354-287 126-76 126 77-33-144 111-96-146-13-58-136-58 135-146 13 111 97-33 143ZM233-120l65-281L80-590l288-25 112-265 112 265 288 25-218 189 65 281-247-149-247 149Zm247-350Z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 302 B |
10
examples/templates/layouts/base.html
Normal file
10
examples/templates/layouts/base.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>
|
||||
{{ block "main" . }}{{ end }}
|
||||
</body>
|
||||
</html>
|
6
examples/templates/pages/index.html
Normal file
6
examples/templates/pages/index.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{ template "layouts/base.html" . }}
|
||||
|
||||
{{ define "main" }}
|
||||
{{ template "icons/material/favicon.svg" . }}
|
||||
<h1>Index</h1>
|
||||
{{ end }}
|
Loading…
Add table
Add a link
Reference in a new issue