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-Bottom: calc(var(--ContentPadding) + 64px);
|
||||
}
|
||||
#MainBoxTop {
|
||||
Color: #505050;
|
||||
}
|
||||
#BottomBox {
|
||||
Width: 100%;
|
||||
Color: #fafaf0;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Type: Post
|
||||
// Title: 🌐️ 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? - 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?
|
||||
// CreatedOn: 2022-05-30
|
||||
// EditedOn: 2022-06-04
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Title: 📓️ Blog
|
||||
// HTMLTitle: <span class="twa twa-notebook"><span>📓️</span></span> Blog
|
||||
// Order: 2
|
||||
// Order: 30
|
||||
|
||||
h1 Blogocto
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Title: 😺 Chi sono
|
||||
// HTMLTitle: <span class="twa twa-grinning-cat"><span>😺</span></span> Chi sono
|
||||
// Order: 1
|
||||
// Order: 20
|
||||
|
||||
h1 Chi sono?
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Title: ✉️ PicoBlog
|
||||
// HTMLTitle: <span class="twa twa-envelope"><span>✉️</span></span> PicoBlog
|
||||
// Order: 3
|
||||
// Order: 40
|
||||
|
||||
h1 Il mio PicoBlog
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Title: 🏠 ~Home~
|
||||
// HTMLTitle: <span class="twa twa-house"><span>🏠</span></span> ~Home~
|
||||
// Order: 0
|
||||
// Order: 10
|
||||
|
||||
h1 Ciao!! (UwU)
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
File=twemoji-amazing-local.css
|
||||
|
||||
mkdir -p 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
|
||||
unzip artifact.zip
|
||||
rm artifact.zip
|
||||
mv twemoji-amazing.css twemoji-amazing-local.css
|
||||
mv twemoji-amazing.css $File
|
||||
|
||||
# Replace spaces with tabs, save space
|
||||
sed -i 's/ / /' twemoji-amazing-local.css
|
||||
sed -i 's/ / /' $File
|
||||
# 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
|
||||
cat >> twemoji-amazing-local.css << [EOF]
|
||||
cat >> $File << [EOF]
|
||||
|
||||
/*
|
||||
Personal CSS patches from
|
||||
https://gitlab.com/octtspacc/postoctt
|
||||
https://gitlab.com/octtspacc/sitoctt
|
||||
*/
|
||||
|
||||
.twa span {
|
||||
/* Prevents image and text emoji overlap */
|
||||
font-size: 0px;
|
||||
/* Prevents image and text emoji overlap */
|
||||
font-size: 0px;
|
||||
}
|
||||
|
||||
[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 id="MainBox">
|
||||
[HTML:Page:MainBox]
|
||||
<div id="MainBoxTop">
|
||||
[HTML:Page:ContentHeader]
|
||||
</div>
|
||||
[HTML:Page:Content]
|
||||
</div>
|
||||
</div>
|
||||
<div id="BottomBoxContainer">
|
||||
|
|
Loading…
Reference in New Issue