mirror of https://gitlab.com/octtspacc/sitoctt
Data di creazione e modifica nelle pagine dei post
This commit is contained in:
parent
cd0fd68aaa
commit
0a55bcfa60
|
@ -99,6 +99,9 @@ ul {
|
||||||
Padding-Top: calc(var(--ContentPadding) + 24px);
|
Padding-Top: calc(var(--ContentPadding) + 24px);
|
||||||
Padding-Bottom: calc(var(--ContentPadding) + 64px);
|
Padding-Bottom: calc(var(--ContentPadding) + 64px);
|
||||||
}
|
}
|
||||||
|
#MainBoxTop {
|
||||||
|
Color: #505050;
|
||||||
|
}
|
||||||
#BottomBox {
|
#BottomBox {
|
||||||
Width: 100%;
|
Width: 100%;
|
||||||
Color: #fafaf0;
|
Color: #fafaf0;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Type: Post
|
// Type: Post
|
||||||
// Title: 🌐️ Come e perché il sitoctt su Tor? - Blogocto
|
// Title: 🌐️ Come e perché il sitoctt su Tor?
|
||||||
// HTMLTitle: <span class="twa twa-globe-with-meridians"><span>🌐️</span></span> Come e perché il sitoctt su Tor? - Blogocto
|
// HTMLTitle: <span class="twa twa-globe-with-meridians"><span>🌐️</span></span> Come e perché il sitoctt su Tor?
|
||||||
// CreatedOn: 2022-05-30
|
// CreatedOn: 2022-05-30
|
||||||
// EditedOn: 2022-06-04
|
// EditedOn: 2022-06-04
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Title: 📓️ Blog
|
// Title: 📓️ Blog
|
||||||
// HTMLTitle: <span class="twa twa-notebook"><span>📓️</span></span> Blog
|
// HTMLTitle: <span class="twa twa-notebook"><span>📓️</span></span> Blog
|
||||||
// Order: 2
|
// Order: 30
|
||||||
|
|
||||||
h1 Blogocto
|
h1 Blogocto
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Title: 😺 Chi sono
|
// Title: 😺 Chi sono
|
||||||
// HTMLTitle: <span class="twa twa-grinning-cat"><span>😺</span></span> Chi sono
|
// HTMLTitle: <span class="twa twa-grinning-cat"><span>😺</span></span> Chi sono
|
||||||
// Order: 1
|
// Order: 20
|
||||||
|
|
||||||
h1 Chi sono?
|
h1 Chi sono?
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Title: ✉️ PicoBlog
|
// Title: ✉️ PicoBlog
|
||||||
// HTMLTitle: <span class="twa twa-envelope"><span>✉️</span></span> PicoBlog
|
// HTMLTitle: <span class="twa twa-envelope"><span>✉️</span></span> PicoBlog
|
||||||
// Order: 3
|
// Order: 40
|
||||||
|
|
||||||
h1 Il mio PicoBlog
|
h1 Il mio PicoBlog
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Title: 🏠 ~Home~
|
// Title: 🏠 ~Home~
|
||||||
// HTMLTitle: <span class="twa twa-house"><span>🏠</span></span> ~Home~
|
// HTMLTitle: <span class="twa twa-house"><span>🏠</span></span> ~Home~
|
||||||
// Order: 0
|
// Order: 10
|
||||||
|
|
||||||
h1 Ciao!! (UwU)
|
h1 Ciao!! (UwU)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
File=twemoji-amazing-local.css
|
||||||
|
|
||||||
mkdir -p Scripts.out/Twemoji
|
mkdir -p Scripts.out/Twemoji
|
||||||
cd Scripts.out/Twemoji
|
cd Scripts.out/Twemoji
|
||||||
|
|
||||||
|
@ -12,33 +14,24 @@ rm -rf twemoji
|
||||||
wget https://nightly.link/SebastianAigner/twemoji-amazing/workflows/build_css/master/artifact.zip
|
wget https://nightly.link/SebastianAigner/twemoji-amazing/workflows/build_css/master/artifact.zip
|
||||||
unzip artifact.zip
|
unzip artifact.zip
|
||||||
rm artifact.zip
|
rm artifact.zip
|
||||||
mv twemoji-amazing.css twemoji-amazing-local.css
|
mv twemoji-amazing.css $File
|
||||||
|
|
||||||
# Replace spaces with tabs, save space
|
# Replace spaces with tabs, save space
|
||||||
sed -i 's/ / /' twemoji-amazing-local.css
|
sed -i 's/ / /' $File
|
||||||
# Blank out CDN URL
|
# Blank out CDN URL
|
||||||
sed -i 's/https:\/\/twemoji.maxcdn.com\/v\/latest\///' twemoji-amazing-local.css
|
sed -i 's/https:\/\/twemoji.maxcdn.com\/v\/latest\///' $File
|
||||||
|
|
||||||
# Personal CSS patches
|
# Personal CSS patches
|
||||||
cat >> twemoji-amazing-local.css << [EOF]
|
cat >> $File << [EOF]
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Personal CSS patches from
|
Personal CSS patches from
|
||||||
https://gitlab.com/octtspacc/postoctt
|
https://gitlab.com/octtspacc/sitoctt
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.twa span {
|
.twa span {
|
||||||
/* Prevents image and text emoji overlap */
|
/* Prevents image and text emoji overlap */
|
||||||
font-size: 0px;
|
font-size: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
[EOF]
|
[EOF]
|
||||||
|
|
||||||
#wget -O "twemoji-amazing-local.css" "https://octtspacc.gitlab.io/sitoctt-assets/twemoji-amazing.css"
|
|
||||||
#sed -i 's/https:\/\/twemoji.maxcdn.com\/v\/latest\///' twemoji-amazing-local.css
|
|
||||||
|
|
||||||
#From="https://twemoji.maxcdn.com/v/latest/svg"
|
|
||||||
#for i in $(grep " background-image: url(" "twemoji-amazing-local.css" | cut -c30- | cut -c${#From}- | rev | cut -c3- | rev)
|
|
||||||
#do
|
|
||||||
# wget -O "$i" "$From/$i"
|
|
||||||
#done
|
|
||||||
|
|
|
@ -44,7 +44,10 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="MainBox">
|
<div id="MainBox">
|
||||||
[HTML:Page:MainBox]
|
<div id="MainBoxTop">
|
||||||
|
[HTML:Page:ContentHeader]
|
||||||
|
</div>
|
||||||
|
[HTML:Page:Content]
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="BottomBoxContainer">
|
<div id="BottomBoxContainer">
|
||||||
|
|
Loading…
Reference in New Issue