Move static files to static/ directory.

This commit is contained in:
Nicolás A. Ortega Froysa 2022-09-05 14:15:40 +02:00
parent 2bc4319a87
commit 8812ea5162
6 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,8 @@ OUTPUT_DIR=./output
.PHONY: all pages blog sync clean .PHONY: all pages blog sync clean
all: pages blog all: pages blog
cp nicolas@ortegas.org_pub.asc style.css favicon.png profile.png $(OUTPUT_DIR) cp -r static/* $(OUTPUT_DIR)
#cp nicolas@ortegas.org_pub.asc style.css favicon.png profile.png $(OUTPUT_DIR)
pages: pages:
mkdir -p $(OUTPUT_DIR) mkdir -p $(OUTPUT_DIR)

View File

@ -1,5 +1,5 @@
<img <img
src="/profile.png" src="/imgs/profile.png"
alt="Profile picture." alt="Profile picture."
title="Profile picture." title="Profile picture."
id="profile" /> id="profile" />

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB