alpha
Login
or
Join now
4uffin.bsky.social
/
core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
My own copy of Tangled :)
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
include fonts in build
author
Akshay
date
1 year ago
(Mar 2, 2025, 6:29 PM UTC)
commit
f38c9500
f38c9500f06d2fc35ae1897f5ef454507babb5d1
parent
850dc500
850dc500646bf072549ef60489a27050892b2ff6
+4
-1
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
templates
layouts
footer.html
flake.nix
+1
-1
appview/pages/templates/layouts/footer.html
Reviewed
···
1
1
{{ define "layouts/footer" }}
2
2
<div class="w-full p-4 bg-white rounded-t">
3
3
<div class="container mx-auto text-center text-gray-600 text-sm">
4
4
-
<span class="font-semibold italic">tangled</span> — made by <a href="/@oppili.bsky.social">@oppili.bsky.social</a> and <a href="/@@icyphox.sh">@icyphox.sh</a>
4
4
+
<span class="font-semibold italic">tangled</span> — made by <a href="/@oppili.bsky.social">@oppili.bsky.social</a> and <a href="/@icyphox.sh">@icyphox.sh</a>
5
5
</div>
6
6
</div>
7
7
{{ end }}
+3
flake.nix
Reviewed
···
74
74
pushd source
75
75
cp -f ${htmx-src} appview/pages/static/htmx.min.js
76
76
cp -f ${lucide-src} appview/pages/static/lucide.min.js
77
77
+
mkdir -p appview/pages/static/fonts
78
78
+
cp -f ${ia-fonts-src}/"iA Writer Quattro"/Static/*.ttf appview/pages/static/fonts/
79
79
+
cp -f ${ia-fonts-src}/"iA Writer Mono"/Static/*.ttf appview/pages/static/fonts/
77
80
${pkgs.tailwindcss}/bin/tailwindcss -i input.css -o appview/pages/static/tw.css
78
81
popd
79
82
'';