mirror of
https://gitlab.com/octtspacc/sitoctt
synced 2025-01-29 15:49:20 +01:00
Agg. PicoBlog, Agg. misti
This commit is contained in:
parent
e3dfb78aa1
commit
5063016f12
@ -18,9 +18,9 @@ pages:
|
|||||||
- PATH=$PATH:$PWD
|
- PATH=$PATH:$PWD
|
||||||
- cd ..
|
- cd ..
|
||||||
- git clone --depth 1 https://gitlab.com/octtspacc/staticoso
|
- git clone --depth 1 https://gitlab.com/octtspacc/staticoso
|
||||||
- Scripts/Deploy.GitLab.sh
|
- ./Scripts/Deploy.GitLab.sh
|
||||||
- Scripts/Deploy.BitTorrent.sh
|
- ./Scripts/Deploy.BitTorrent.sh
|
||||||
- Scripts/Deploy.Gemini.sh
|
- ./Scripts/Deploy.Gemini.sh
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
function PlanktosInstall() {
|
function PlanktosInstall() {
|
||||||
if (!('serviceWorker' in navigator)) return
|
if (!('serviceWorker' in navigator)) return
|
||||||
|
|
||||||
let attributes = document.currentScript.attributes
|
let attributes = document.currentScript.attributes
|
||||||
let sw = '/planktos.sw.js'
|
let sw = '/planktos.sw.js'
|
||||||
if (attributes['sw']) sw = attributes['sw'].value
|
if (attributes['sw']) sw = attributes['sw'].value
|
||||||
if (attributes['data-sw']) sw = attributes['data-sw'].value
|
if (attributes['data-sw']) sw = attributes['data-sw'].value
|
||||||
|
|
||||||
navigator.serviceWorker.register(sw)
|
navigator.serviceWorker.register(sw)
|
||||||
.catch(function (err) {
|
.catch(function (err) {
|
||||||
console.log('Service worker registration failed with ' + err)
|
console.log('Service worker registration failed with ' + err)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function PrivacyAccepted() {
|
function PrivacyAccepted() {
|
||||||
|
@ -159,6 +159,7 @@ H3:hover {
|
|||||||
Padding: Var(--ContentPadding);
|
Padding: Var(--ContentPadding);
|
||||||
}
|
}
|
||||||
#RightBox, #RightBoxContainer {
|
#RightBox, #RightBoxContainer {
|
||||||
|
Float: Right;
|
||||||
Padding: Var(--ContentPadding);
|
Padding: Var(--ContentPadding);
|
||||||
}
|
}
|
||||||
#RightBox {
|
#RightBox {
|
||||||
|
@ -24,9 +24,14 @@ Tieni a mente che le pubblicazioni più recenti vanno sempre in cima, facendo sc
|
|||||||
|
|
||||||
<div markdown="1" class="BorderBoxContainer">
|
<div markdown="1" class="BorderBoxContainer">
|
||||||
|
|
||||||
|
<details markdown="1">
|
||||||
|
<summary>[2022-08-17] Lavoro poco ottimale</summary>
|
||||||
|
È il mio stato corrente, dove vorrei avere tutta la mia roba di codice sempre perfettamente sincronizzata tra tutti i dispositivi, incluso lo Ximi. Ho chiesto consigli [qui](https://feddit.it/post/44715){[:MdTgtBlank:]} e qualcosa di buono ho già preso, vedremo in cosa andrò a finire.
|
||||||
|
</details>
|
||||||
|
|
||||||
<details markdown="1">
|
<details markdown="1">
|
||||||
<summary>[2022-08-13] Vecchi articoli e vecchi temi</summary>
|
<summary>[2022-08-13] Vecchi articoli e vecchi temi</summary>
|
||||||
Vorrei iniziare ad importare articoli dal mio vecchio blog, perché lì non sono ben preservati. Il primo che già ripropongo è l'ultimo pubblicato lì: [Gli inaspettati vantaggi della chiavetta Linux](./Posts/Archive/2022-05-07-Gli-Inaspettati-Vantaggi-della-Chiavetta-Linux.html). Si, con (quasi) la stessa veste grafica che avevo sul vecchio blog, anziché con quello del resto del sitocto; con staticoso posso questo ed altro.
|
Vorrei iniziare ad importare articoli dal mio vecchio blog, perché lì non sono ben preservati. Il primo che già ripropongo è l'ultimo pubblicato lì: [Gli inaspettati vantaggi della chiavetta Linux](./Posts/Archive/2022-05-07-Gli-Inaspettati-Vantaggi-della-Chiavetta-Linux.html). Si, con (quasi) la stessa veste grafica che avevo sul vecchio blog, anziché con quella del resto del sitocto; con staticoso posso questo ed altro.
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details markdown="1">
|
<details markdown="1">
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
python3 staticoso/Source/Build.py \
|
python3 ./staticoso/Source/Build.py \
|
||||||
--SiteDomain="https://sitoctt.octt.eu.org" \
|
--SiteDomain="https://sitoctt.octt.eu.org" \
|
||||||
--FolderRoots="{'*':'https://octtspacc.gitlab.io'}" \
|
--FolderRoots="{'*':'https://octtspacc.gitlab.io'}" \
|
||||||
--DynamicParts="{'Head':['Privacy.html','Twemoji.html'], 'Footer':['StatCounter.html']}" \
|
--DynamicParts="{'Head':['Privacy.html','Twemoji.html'], 'Footer':['StatCounter.html']}" \
|
||||||
|
4
Site.ini
4
Site.ini
@ -4,11 +4,11 @@ BlogName = blogoctt
|
|||||||
Template = sitoctt.html
|
Template = sitoctt.html
|
||||||
Lang = it
|
Lang = it
|
||||||
Minify = True
|
Minify = True
|
||||||
SitemapOut = True
|
|
||||||
MarkdownExts = ('attr_list', 'def_list', 'footnotes', 'markdown_del_ins', 'md_in_html', 'mdx_subscript', 'mdx_superscript', 'tables')
|
MarkdownExts = ('attr_list', 'def_list', 'footnotes', 'markdown_del_ins', 'md_in_html', 'mdx_subscript', 'mdx_superscript', 'tables')
|
||||||
# AutoCategories = False
|
# AutoCategories = False
|
||||||
# NoScripts = False
|
|
||||||
# GemtextOut = False
|
# GemtextOut = False
|
||||||
|
# NoScripts = False
|
||||||
|
# SitemapOut = True
|
||||||
|
|
||||||
[Menu]
|
[Menu]
|
||||||
0 = index
|
0 = index
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<div id="LeftBoxBottom" class="Pixelated">
|
<div id="LeftBoxBottom" class="Pixelated">
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
<a class="NoABigger" href="https://mastodon.uno/@octo" target="_blank" rel="noopener"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Follow-Me-On-Mastodon.gif"></a>
|
<a class="NoABigger" href="https://mastodon.uno/@octo" target="_blank" rel="noopener nofollow"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Follow-Me-On-Mastodon.gif"></a>
|
||||||
<br>
|
<br>
|
||||||
<a class="NoABigger" href="https://www.gnu.org/home.it" target="_blank" rel="noopener"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Made-On-GNU-Linux.gif"></a>
|
<a class="NoABigger" href="https://www.gnu.org/home.it" target="_blank" rel="noopener nofollow"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Made-On-GNU-Linux.gif"></a>
|
||||||
<span> </span>
|
<span> </span>
|
||||||
<a class="NoABigger" href="https://www.torproject.org/it" target="_blank" rel="noopener"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Tor.gif"></a>
|
<a class="NoABigger" href="https://www.torproject.org/it" target="_blank" rel="noopener nofollow"><img src="[staticoso:Folder:*:AbsoluteRoot]/sitoctt-assets/Buttons/Tor.gif"></a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user