feat: add favicon
continuous-integration/drone Build is failing Details

This commit is contained in:
ktyl 2024-06-08 11:59:23 +01:00
parent 059a5f68bf
commit 592749a5b4
3 changed files with 3 additions and 1 deletions

BIN
img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1000 B

View File

@ -34,6 +34,7 @@ vn: $(VN) | $(OUT_DIR)
cp -r $(VN) $(OUT_DIR)/vn
html: $(HTML_TARGETS) $(CSS_TARGETS) | $(OUT_DIR)
cp $(IMG_DIR)/*.ico $(OUT_DIR)/
cp $(IMG_DIR)/*.png $(OUT_DIR)/
cp $(IMG_DIR)/*.jpg $(OUT_DIR)/
@ -64,7 +65,7 @@ blog: $(HTML_INCLUDES) $(CSS_TARGETS)
for page in `find "$(BLOG_OUT_DIR)" -wholename "*.html"`; do \
pipenv run python ppp/ppp.py $$page $(HTML_INCLUDES) > temp ; \
mv temp $$page ; \
cp $(CSS_TARGETS) `dirname $$page` ; \
cp $(CSS_TARGETS) $(IMG_DIR)/*.ico `dirname $$page` ; \
done
clean:

View File

@ -6,6 +6,7 @@
<meta name="keywords" content="Cat Flynn, Ktyl, Portfolio, Showreel, Blog, Gallery"/> <!-- blog, gallery -->
<link rel="canonical" href="https://ktyl.dev/">
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="https://kit.fontawesome.com/ad50bb2e16.js" crossorigin="anonymous"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->