tangled
alpha
login
or
join now
camsmith.dev
/
core
forked from
tangled.org/core
Monorepo for Tangled — https://tangled.org
0
fork
atom
overview
issues
pulls
pipelines
basic footer
anirudh.fi
11 months ago
84f33e91
4acc6ed2
verified
This commit was signed with the committer's
known signature
.
anirudh.fi
SSH Key Fingerprint:
SHA256:FQUiBXeyBQT4WKOm7EKh6hLkHjBh9MdfkV3my0dueGE=
+25
-13
2 changed files
expand all
collapse all
unified
split
appview
pages
templates
layouts
base.html
footer.html
+18
-13
appview/pages/templates/layouts/base.html
···
11
11
<link href="/static/tw.css" rel="stylesheet" type="text/css" />
12
12
<title>{{ block "title" . }}tangled{{ end }}</title>
13
13
</head>
14
14
-
<body>
15
15
-
<header>
16
16
-
{{ block "topbar" . }}
17
17
-
{{ template "layouts/topbar" . }}
18
18
-
{{ end }}
19
19
-
</header>
20
20
-
<div class="container mx-auto px-1">
21
21
-
<main class="content">{{ block "content" . }}{{ end }}</main>
22
22
-
<script src="/static/lucide.min.js"></script>
23
23
-
<script>
24
24
-
lucide.createIcons();
25
25
-
</script>
26
26
-
</div>
14
14
+
<body class="min-h-screen flex flex-col justify-between">
15
15
+
<header>
16
16
+
{{ block "topbar" . }}
17
17
+
{{ template "layouts/topbar" . }}
18
18
+
{{ end }}
19
19
+
</header>
20
20
+
<div class="container mx-auto px-1 flex-grow">
21
21
+
<main class="content">{{ block "content" . }}{{ end }}</main>
22
22
+
<script src="/static/lucide.min.js"></script>
23
23
+
<script>
24
24
+
lucide.createIcons();
25
25
+
</script>
26
26
+
</div>
27
27
+
<footer class="mt-16 ">
28
28
+
{{ block "footer" . }}
29
29
+
{{ template "layouts/footer" . }}
30
30
+
{{ end }}
31
31
+
</footer>
27
32
</body>
28
33
</html>
29
34
{{ end }}
+7
appview/pages/templates/layouts/footer.html
···
1
1
+
{{ define "layouts/footer" }}
2
2
+
<div class="w-full p-4 bg-gray-50">
3
3
+
<div class="container mx-auto text-center text-gray-600 text-sm">
4
4
+
tangled
5
5
+
</div>
6
6
+
</div>
7
7
+
{{ end }}