tangled
alpha
login
or
join now
dzming.li
/
core
0
fork
atom
A vibe coded tangled fork which supports pijul.
0
fork
atom
overview
issues
pulls
pipelines
include fonts in build
Akshay
1 year ago
f38c9500
850dc500
+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
···
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
···
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
'';