Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 497 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 497 Bytes

Personal site.

Serves mostly as a playground for creating static site built with the same technologies that I would use for a full-fledged Django app:

  • htmx
  • hyperscript
  • tailwind

Note

Create tailwind css files:

npx tailwindcss -i ./input.css -o ./static/output.css --watch

Python version 3.12

Generating favicon.ico

from PIL import Image
img = Image.open("static/nico-bako.png")
img.save("favicon.ico")