mirror of
https://gitea.com/gitea/theme.git
synced 2026-02-03 03:23:17 +08:00
Initial commit
This commit is contained in:
2
layouts/partials/footer.html
Normal file
2
layouts/partials/footer.html
Normal file
@@ -0,0 +1,2 @@
|
||||
</body>
|
||||
</html>
|
||||
23
layouts/partials/header.html
Normal file
23
layouts/partials/header.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} - {{ .Site.Title }}{{ end }}</title>
|
||||
{{ .Hugo.Generator }}
|
||||
|
||||
{{ with .Params.goimport }}
|
||||
<meta name="go-import" content="{{ . }}">
|
||||
{{ end }}
|
||||
|
||||
{{ with .Params.gosource }}
|
||||
<meta name="go-source" content="{{ . }}">
|
||||
{{ end }}
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
|
||||
<link rel="icon" type="image/x-icon" href="images/favicon.png">
|
||||
|
||||
<link rel="stylesheet" href="styles/main.css">
|
||||
<script type="text/javascript" src="scripts/main.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
{{ partial "navbar" . }}
|
||||
0
layouts/partials/menu.html
Normal file
0
layouts/partials/menu.html
Normal file
1
layouts/partials/navbar.html
Normal file
1
layouts/partials/navbar.html
Normal file
@@ -0,0 +1 @@
|
||||
{{ partial "menu" . }}
|
||||
Reference in New Issue
Block a user