orgmode-to-gemini-blog/sass_styles.sh

14 lines
489 B
Bash
Raw Normal View History

2024-11-10 00:01:15 +01:00
#!/bin/bash
# conversion de style pour le html
# https://sass-lang.com
2024-11-14 16:22:34 +01:00
sass templates/styles_src/style_general.scss templates/styles/style_general.css
2025-02-23 17:28:40 +01:00
# sass templates/styles_src/truc.scss templates/styles/style_general.css
2025-02-23 17:37:53 +01:00
echo "copier le style général et le js principal vers html-websites pour chaque site"
2025-02-20 19:09:50 +01:00
for i in $(ls html-websites); do
cp templates/styles/style_general.css html-websites/$i/style.css
cp templates/js/main_script.js html-websites/$i/main_script.js
done