forked from fillotassi/HOD2018_website
Added theme
This commit is contained in:
parent
48f634d1ce
commit
22799e6b7e
32 changed files with 1161 additions and 1 deletions
|
@ -1 +0,0 @@
|
||||||
Subproject commit 8b63c5ab29c3f80791fd3aad6354748c968459cb
|
|
20
themes/HOD2k18/LICENSE.md
Normal file
20
themes/HOD2k18/LICENSE.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 Vimux
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||||
|
this software and associated documentation files (the "Software"), to deal in
|
||||||
|
the Software without restriction, including without limitation the rights to
|
||||||
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||||
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||||
|
subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||||
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||||
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||||
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
31
themes/HOD2k18/README.md
Normal file
31
themes/HOD2k18/README.md
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# Blank
|
||||||
|
|
||||||
|
Blank — starter [Hugo](//gohugo.io/) theme for developers. Use it to make your own theme.
|
||||||
|
|
||||||
|
[Live Demo](http://themes.gohugo.io/theme/blank/)
|
||||||
|
|
||||||
|
![Blank theme screenshot](https://github.com/Vimux/blank/blob/master/images/splash.png)
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
In your Hugo site `themes` directory, run:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ git clone https://github.com/vimux/blank
|
||||||
|
```
|
||||||
|
|
||||||
|
Next, open `config.toml` in the base of the Hugo site and ensure the theme option is set to `blank`.
|
||||||
|
|
||||||
|
```
|
||||||
|
theme = "blank"
|
||||||
|
```
|
||||||
|
|
||||||
|
For more information read the official [setup guide](//gohugo.io/overview/installing/) of Hugo.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Have you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](//github.com/Vimux/blank/issues) to let me know. Or make directly a [pull request](//github.com/Vimux/blank/pulls).
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This theme is released under the [MIT license](//github.com/Vimux/blank/blob/master/LICENSE.md).
|
BIN
themes/HOD2k18/images/screenshot.png
Normal file
BIN
themes/HOD2k18/images/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 94 KiB |
BIN
themes/HOD2k18/images/splash.png
Normal file
BIN
themes/HOD2k18/images/splash.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 136 KiB |
BIN
themes/HOD2k18/images/tn.png
Normal file
BIN
themes/HOD2k18/images/tn.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 136 KiB |
10
themes/HOD2k18/layouts/_default/list.html
Normal file
10
themes/HOD2k18/layouts/_default/list.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<main>
|
||||||
|
{{ $paginator := .Paginate (where .Data.Pages "Type" "post") }}
|
||||||
|
{{ range $paginator.Pages }}
|
||||||
|
{{ partial "summary.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
</main>
|
||||||
|
{{ partial "sidebar.html" . }}
|
||||||
|
{{ partial "footer.html" . }}
|
22
themes/HOD2k18/layouts/_default/single.html
Normal file
22
themes/HOD2k18/layouts/_default/single.html
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<main>
|
||||||
|
<article>
|
||||||
|
<h1>{{ .Title }}</h1>
|
||||||
|
<time>{{ .Date.Format "02.01.2006 15:04" }}</time>
|
||||||
|
<div>
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul id="tags">
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
<li><a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a> </li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
{{ template "_internal/disqus.html" . }}
|
||||||
|
</div>
|
||||||
|
</article>
|
||||||
|
</main>
|
||||||
|
{{ partial "sidebar.html" . }}
|
||||||
|
{{ partial "footer.html" . }}
|
12
themes/HOD2k18/layouts/index.html
Normal file
12
themes/HOD2k18/layouts/index.html
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<main>
|
||||||
|
<div id="scrollable-column">
|
||||||
|
<div id="left-column">
|
||||||
|
{{ partial "furby-hack.html" . }}
|
||||||
|
</div>
|
||||||
|
<div id="right-column">
|
||||||
|
{{ partial "talk-calendar.html" . }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
{{ partial "footer.html" . }}
|
0
themes/HOD2k18/layouts/partials/article.html
Normal file
0
themes/HOD2k18/layouts/partials/article.html
Normal file
24
themes/HOD2k18/layouts/partials/ascii.html
Normal file
24
themes/HOD2k18/layouts/partials/ascii.html
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
<!--
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div>
|
||||||
|
-->
|
||||||
|
<pre>
|
||||||
|
/ You are only young once, but you can \
|
||||||
|
\ stay immature indefinitely. /
|
||||||
|
-----------------------------------------
|
||||||
|
\
|
||||||
|
\
|
||||||
|
.--.
|
||||||
|
|o_o |
|
||||||
|
|:_/ |
|
||||||
|
// \ \
|
||||||
|
(| | )
|
||||||
|
/'\_ _/`\
|
||||||
|
\___)=(___/
|
||||||
|
</pre>
|
||||||
|
<pre>(_) __ /| | | |\ | _ _ ._ _ |_ ._ _
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_</pre>
|
||||||
|
<!--
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
-->
|
49
themes/HOD2k18/layouts/partials/call.html
Normal file
49
themes/HOD2k18/layouts/partials/call.html
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
<p id="call">
|
||||||
|
Apro gli occhi, goccia di sudore dritta nelle palpebre, brucia. Bestemmio.<br>
|
||||||
|
Fa caldo, anche oggi non si dorme. Bestemmio.<br>
|
||||||
|
Son le 6, fra due ore devo pure lavorare. Bestemmio.<br>
|
||||||
|
Un ronzio tra l'esterno e il cervello, è una zanzara. Bestemmio.<br><br>
|
||||||
|
|
||||||
|
Ne ho fatte quattro, prima o poi mi scrivo un bestemmiatore automatico.<br>
|
||||||
|
|
||||||
|
Accendo il thinkpad, tanto lo so che non dormo.
|
||||||
|
Boota: leggo che dice il kernel, pure le cpu soffrono il caldo.<br><br>
|
||||||
|
|
||||||
|
Login.<br>
|
||||||
|
`cdm`<br>
|
||||||
|
Invio.<br>
|
||||||
|
Alt+P.<br>
|
||||||
|
thunderbird.<br>
|
||||||
|
Nuova mail: <b>[Hackmeeting] Hack or Di(y|e) chapter 4 !!!! 9 e 10 novembre
|
||||||
|
@ XM24, Bologna: oh papere venite!</b>
|
||||||
|
<br><br>
|
||||||
|
Ah, di nuovo i bolognesi, ma non le dovevano sgomberare?<br>
|
||||||
|
Vabbè, so vive, vediamo la mail:<br><br>
|
||||||
|
```<br>
|
||||||
|
<i>OH OH OH OH, è di nuovo quel periodo dell'anno la!<br>
|
||||||
|
[cut]<br>
|
||||||
|
tra fine ottobre e inizio novembre<br>
|
||||||
|
[cut]<br></i>
|
||||||
|
```<br><br>
|
||||||
|
|
||||||
|
Ma che oh! hanno copiato il testo dall'anno scorso?! Mo je scrivo e faccio il
|
||||||
|
flame... anzi no, se che sembro troppo autistic* che mi ricordo tutte le
|
||||||
|
mail.<br><br>
|
||||||
|
|
||||||
|
Vabbò, vediamo se c'ho roba da portare.<br><br>
|
||||||
|
|
||||||
|
Mi guardo intorno: ci sono i furby sulla mensola, magari porto uno di quelli, faccio la cosa di prima, le bestemmie...meglio, lo faccio bestemmiare in furbish. Lo guardo, mi guarda, lo guardo, l'incarnazione meccanica di satana
|
||||||
|
percepisce e risponde<br><i>«dah‐boo oo‐kah doo‐dah oo‐nye loo?»</i><br> che, dalle lezioni di furbish dell'IPSIA, sarebbe <i><br>«no! zì stai scherzando?!».</i><br>
|
||||||
|
<br>
|
||||||
|
Sulla scrivania c'è il trasmettitore radio per onde lunghe, l'ho finito ieri, se va porto quello. Lo accendo, fuma, scalda, la temperatura nella stanza aumenta di un grado.<br> Lo butto.
|
||||||
|
|
||||||
|
Potrei parlare della configurazione nuova del server di posta, dai ci sta.<br><br>
|
||||||
|
Scrivo la mail.<br>
|
||||||
|
Il destinatario:<br> <b>hackordiye@totallynot.science</b><br>
|
||||||
|
Premo invia: Il server non risponde.<br><br>
|
||||||
|
Guardo sotto la scrivania, c'è il server, ronza come uno sciame di zanzare e aggiunge almeno tre gradi alla stanza.<br><br>
|
||||||
|
|
||||||
|
Col piede sinistro lo calcio, con l'indice destro premo invia: Mail inviata.<br><br>
|
||||||
|
|
||||||
|
Ci vediamo a Bologna.
|
||||||
|
</p>
|
6
themes/HOD2k18/layouts/partials/footer.html
Normal file
6
themes/HOD2k18/layouts/partials/footer.html
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<footer>
|
||||||
|
<!--<p>© {{ now.Year }} <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></p>-->
|
||||||
|
<p>There are no cookies in outer space</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
105
themes/HOD2k18/layouts/partials/furby-hack.html
Normal file
105
themes/HOD2k18/layouts/partials/furby-hack.html
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div class="ascii-wrapper" style="top:1em;">
|
||||||
|
<pre style="text-align:center">
|
||||||
|
_ _ _ _ _ _ _ |
|
||||||
|
|\ |_| |_| _ |_) | | | | | | | | _ |/ |_| |_| |
|
||||||
|
|_) | | | | |_) |_| |_| |_| |_| |\ | | | | |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
+ + |
|
||||||
|
+ + |
|
||||||
|
+ + |
|
||||||
|
+ ___ \ | / ___ + |
|
||||||
|
\ > \ / < / |
|
||||||
|
+ - ○ ○ - + |
|
||||||
|
+ ( - c - ) + |
|
||||||
|
+ /- - - -\ + |
|
||||||
|
(- __ - - __ -) |
|
||||||
|
+ \'__)_-_(__'/ + |
|
||||||
|
|
|
||||||
|
+ + + |
|
||||||
|
+ + |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
_ _ _ _ _ _ _ _ _ |
|
||||||
|
|\ | | | | _ |\ |_| |_| | | | | _ |\| \_/ |_ | | | | | ) |
|
||||||
|
|_) |_| |_| |_) | | | | |_| |_| | | / |_ |__ |_| |_| ( |
|
||||||
|
' |
|
||||||
|
|
|
||||||
|
|_ _. _ | _ ._ _| o / | _ \ |
|
||||||
|
| | (_| (_ |< ─ (_) | ─ (_| | \ \/ | (/_ / |
|
||||||
|
/ |
|
||||||
|
_ _ , _ |
|
||||||
|
/ \ / \ /| / \ |
|
||||||
|
/ | | / | \_/ |
|
||||||
|
/ | | | / \ |
|
||||||
|
/__ \_/ | \_/ |
|
||||||
|
|
|
||||||
|
_ _ |
|
||||||
|
(_) __ /| | | |\ | _ _ ._ _ |_ ._ _ |
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_ |
|
||||||
|
\|/
|
||||||
|
v
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<div class="text-wrapper">
|
||||||
|
<div class="text-offset"></div>
|
||||||
|
<div style="position:relative">
|
||||||
|
<pre style="position:absolute;right:-1.7em">
|
||||||
|
\|/
|
||||||
|
v
|
||||||
|
</pre>
|
||||||
|
<p id="call" style="background-color:black">
|
||||||
|
Apro gli occhi, goccia di sudore dritta nelle palpebre, brucia. Bestemmio.<br>
|
||||||
|
Fa caldo, anche oggi non si dorme. Bestemmio.<br>
|
||||||
|
Son le 6, fra due ore devo pure lavorare. Bestemmio.<br>
|
||||||
|
Un ronzio tra l'esterno e il cervello, è una zanzara. Bestemmio.<br><br>
|
||||||
|
|
||||||
|
Ne ho fatte quattro, prima o poi mi scrivo un bestemmiatore automatico.<br>
|
||||||
|
|
||||||
|
Accendo il thinkpad, tanto lo so che non dormo.
|
||||||
|
Boota: leggo che dice il kernel, pure le cpu soffrono il caldo.<br><br>
|
||||||
|
|
||||||
|
Login.<br>
|
||||||
|
`cdm`<br>
|
||||||
|
Invio.<br>
|
||||||
|
Alt+P.<br>
|
||||||
|
thunderbird.<br>
|
||||||
|
Nuova mail: <b>[Hackmeeting] Hack or Di(y|e) chapter 4 !!!! 9 e 10 novembre
|
||||||
|
@ XM24, Bologna: oh papere venite!</b>
|
||||||
|
<br><br>
|
||||||
|
Ah, di nuovo i bolognesi, ma non le dovevano sgomberare?<br>
|
||||||
|
Vabbè, so vive, vediamo la mail:<br><br>
|
||||||
|
```<br>
|
||||||
|
<i>OH OH OH OH, è di nuovo quel periodo dell'anno la!<br>
|
||||||
|
[cut]<br>
|
||||||
|
tra fine ottobre e inizio novembre<br>
|
||||||
|
[cut]<br></i>
|
||||||
|
```<br><br>
|
||||||
|
|
||||||
|
Ma che oh! hanno copiato il testo dall'anno scorso?! Mo je scrivo e faccio il
|
||||||
|
flame... anzi no, se che sembro troppo autistic* che mi ricordo tutte le
|
||||||
|
mail.<br><br>
|
||||||
|
|
||||||
|
Vabbò, vediamo se c'ho roba da portare.<br><br>
|
||||||
|
|
||||||
|
Mi guardo intorno: ci sono i furby sulla mensola, magari porto uno di quelli, faccio la cosa di prima, le bestemmie...meglio, lo faccio bestemmiare in furbish. Lo guardo, mi guarda, lo guardo, l'incarnazione meccanica di satana
|
||||||
|
percepisce e risponde<br><i>«dah‐boo oo‐kah doo‐dah oo‐nye loo?»</i><br> che, dalle lezioni di furbish dell'IPSIA, sarebbe <i><br>«no! zì stai scherzando?!».</i><br>
|
||||||
|
<br>
|
||||||
|
Sulla scrivania c'è il trasmettitore radio per onde lunghe, l'ho finito ieri, se va porto quello. Lo accendo, fuma, scalda, la temperatura nella stanza aumenta di un grado.<br> Lo butto.
|
||||||
|
|
||||||
|
Potrei parlare della configurazione nuova del server di posta, dai ci sta.<br><br>
|
||||||
|
Scrivo la mail.<br>
|
||||||
|
Il destinatario:<br> <b>hackordiye@totallynot.science</b><br>
|
||||||
|
Premo invia: Il server non risponde.<br><br>
|
||||||
|
Guardo sotto la scrivania, c'è il server, ronza come uno sciame di zanzare e aggiunge almeno tre gradi alla stanza.<br><br>
|
||||||
|
|
||||||
|
Col piede sinistro lo calcio, con l'indice destro premo invia: Mail inviata.<br><br>
|
||||||
|
|
||||||
|
Ci vediamo a Bologna.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
23
themes/HOD2k18/layouts/partials/furby-hack2.html
Normal file
23
themes/HOD2k18/layouts/partials/furby-hack2.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
a x
|
||||||
|
h o
|
||||||
|
c x
|
||||||
|
x ___ \ | / ___ x
|
||||||
|
\ > \ / < /
|
||||||
|
k - ○ ○ - r
|
||||||
|
x ( - c - ) x
|
||||||
|
i /- - - -\ d
|
||||||
|
(- __ - - __ -)
|
||||||
|
d \'__)_-_(__'/ i
|
||||||
|
|
||||||
|
e x y
|
||||||
|
x x
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<pre>(_) __ /| | | |\ | _ _ ._ _ |_ ._ _
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
180
themes/HOD2k18/layouts/partials/furby-hack3.html
Normal file
180
themes/HOD2k18/layouts/partials/furby-hack3.html
Normal file
|
@ -0,0 +1,180 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div style="position:fixed;top:1em;">
|
||||||
|
<pre style="text-align:center">
|
||||||
|
_ _ _ _ _ _ _ |
|
||||||
|
|\ |_| |_| _ |_| | | | | | | | | _ |/ |_| |_| |
|
||||||
|
|_| | | | | |_| |_| |_| |_| |_| |\ | | | | |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
+ + |
|
||||||
|
+ + |
|
||||||
|
+ + |
|
||||||
|
+ ___ \ | / ___ + |
|
||||||
|
\ > \ / < / |
|
||||||
|
+ - ○ ○ - + |
|
||||||
|
+ ( - c - ) + |
|
||||||
|
+ /- - - -\ + |
|
||||||
|
(- __ - - __ -) |
|
||||||
|
+ \'__)_-_(__'/ + |
|
||||||
|
|
|
||||||
|
+ + + |
|
||||||
|
+ + |
|
||||||
|
|
|
||||||
|
|
|
||||||
|
_ _ _ _ _ _ _ _ _ |
|
||||||
|
|\ | | | | _ |\ |_| |_| | | | | _ |\| \ / |_ | | | | | ) |
|
||||||
|
|_| |_| |_| |_| | | | | |_| |_| | | / |_ |__ |_| |_| ( |
|
||||||
|
' |
|
||||||
|
|
|
||||||
|
|_ _. _ | _ ._ _| o / | _ \ |
|
||||||
|
| | (_| (_ |< ─ (_) | ─ (_| | \ \/ | (/_ / |
|
||||||
|
/ |
|
||||||
|
_ _ _ |
|
||||||
|
/ \ / \ /| / \ |
|
||||||
|
/ | | / | \_/ |
|
||||||
|
/ | | | / \ |
|
||||||
|
/__ \_/ | \_/ |
|
||||||
|
|
|
||||||
|
_ _ |
|
||||||
|
(_) __ /| | | |\ | _ _ ._ _ |_ ._ _ |
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_ |
|
||||||
|
\|/
|
||||||
|
v
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<!--
|
||||||
|
<pre>
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<pre style="text-align:center">
|
||||||
|
_ _ _ _ _ _ _ _ _ _ _ _ |
|
||||||
|
|_ | | |_| |_| |/ | | | | |_ | | |_| |/ |_| | | |\/| |_| |
|
||||||
|
_| | | |_ | | |\ | | | |_| | |_| | \ |\ |_| |_| | | |_| |
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
|
||||||
|
______________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
_____________________
|
||||||
|
/ /|
|
||||||
|
/ / |
|
||||||
|
/ / |
|
||||||
|
/ / |
|
||||||
|
/ / /
|
||||||
|
/ / /
|
||||||
|
/____________________/ /
|
||||||
|
| | /
|
||||||
|
| | /
|
||||||
|
| | /
|
||||||
|
|____________________|/
|
||||||
|
|
||||||
|
</pre>
|
||||||
|
<pre>
|
||||||
|
|
||||||
|
______________________________________________
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/(
|
||||||
|
/
|
||||||
|
(
|
||||||
|
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/|\
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/__________|__________\
|
||||||
|
|
||||||
|
/|\
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/ | \
|
||||||
|
/__________|__________\
|
||||||
|
|
||||||
|
/\
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/ \
|
||||||
|
/____________________\
|
||||||
|
|
||||||
|
|
||||||
|
</pre>-->
|
||||||
|
<div style="">
|
||||||
|
<div style="background-color:black;"></div>
|
||||||
|
<p id="call" style="background-color:black">
|
||||||
|
Apro gli occhi, goccia di sudore dritta nelle palpebre, brucia. Bestemmio.<br>
|
||||||
|
Fa caldo, anche oggi non si dorme. Bestemmio.<br>
|
||||||
|
Son le 6, fra due ore devo pure lavorare. Bestemmio.<br>
|
||||||
|
Un ronzio tra l'esterno e il cervello, è una zanzara. Bestemmio.<br><br>
|
||||||
|
|
||||||
|
Ne ho fatte quattro, prima o poi mi scrivo un bestemmiatore automatico.<br>
|
||||||
|
|
||||||
|
Accendo il thinkpad, tanto lo so che non dormo.
|
||||||
|
Boota: leggo che dice il kernel, pure le cpu soffrono il caldo.<br><br>
|
||||||
|
|
||||||
|
Login.<br>
|
||||||
|
`cdm`<br>
|
||||||
|
Invio.<br>
|
||||||
|
Alt+P.<br>
|
||||||
|
thunderbird.<br>
|
||||||
|
Nuova mail: <b>[Hackmeeting] Hack or Di(y|e) chapter 4 !!!! 9 e 10 novembre
|
||||||
|
@ XM24, Bologna: oh papere venite!</b>
|
||||||
|
<br><br>
|
||||||
|
Ah, di nuovo i bolognesi, ma non le dovevano sgomberare?<br>
|
||||||
|
Vabbè, so vive, vediamo la mail:<br><br>
|
||||||
|
```<br>
|
||||||
|
<i>OH OH OH OH, è di nuovo quel periodo dell'anno la!<br>
|
||||||
|
[cut]<br>
|
||||||
|
tra fine ottobre e inizio novembre<br>
|
||||||
|
[cut]<br></i>
|
||||||
|
```<br><br>
|
||||||
|
|
||||||
|
Ma che oh! hanno copiato il testo dall'anno scorso?! Mo je scrivo e faccio il
|
||||||
|
flame... anzi no, se che sembro troppo autistic* che mi ricordo tutte le
|
||||||
|
mail.<br><br>
|
||||||
|
|
||||||
|
Vabbò, vediamo se c'ho roba da portare.<br><br>
|
||||||
|
|
||||||
|
Mi guardo intorno: ci sono i furby sulla mensola, magari porto uno di quelli, faccio la cosa di prima, le bestemmie...meglio, lo faccio bestemmiare in furbish. Lo guardo, mi guarda, lo guardo, l'incarnazione meccanica di satana
|
||||||
|
percepisce e risponde<br><i>«dah‐boo oo‐kah doo‐dah oo‐nye loo?»</i><br> che, dalle lezioni di furbish dell'IPSIA, sarebbe <i><br>«no! zì stai scherzando?!».</i><br>
|
||||||
|
<br>
|
||||||
|
Sulla scrivania c'è il trasmettitore radio per onde lunghe, l'ho finito ieri, se va porto quello. Lo accendo, fuma, scalda, la temperatura nella stanza aumenta di un grado.<br> Lo butto.
|
||||||
|
|
||||||
|
Potrei parlare della configurazione nuova del server di posta, dai ci sta.<br><br>
|
||||||
|
Scrivo la mail.<br>
|
||||||
|
Il destinatario:<br> <b>hackordiye@totallynot.science</b><br>
|
||||||
|
Premo invia: Il server non risponde.<br><br>
|
||||||
|
Guardo sotto la scrivania, c'è il server, ronza come uno sciame di zanzare e aggiunge almeno tre gradi alla stanza.<br><br>
|
||||||
|
|
||||||
|
Col piede sinistro lo calcio, con l'indice destro premo invia: Mail inviata.<br><br>
|
||||||
|
|
||||||
|
Ci vediamo a Bologna.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
23
themes/HOD2k18/layouts/partials/furby-normal.html
Normal file
23
themes/HOD2k18/layouts/partials/furby-normal.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
* *
|
||||||
|
* *
|
||||||
|
* *
|
||||||
|
* ___ \ | / ___ *
|
||||||
|
\ > \ / < /
|
||||||
|
* - ○ ○ - *
|
||||||
|
* ( - c - ) *
|
||||||
|
* /- - - -\ *
|
||||||
|
(- __ - - __ -)
|
||||||
|
* \'__)_-_(__'/ *
|
||||||
|
|
||||||
|
* * *
|
||||||
|
* *
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<pre>(_) __ /| | | |\ | _ _ ._ _ |_ ._ _
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
23
themes/HOD2k18/layouts/partials/furby-pirate.html
Normal file
23
themes/HOD2k18/layouts/partials/furby-pirate.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
* *
|
||||||
|
hack or
|
||||||
|
* *
|
||||||
|
* ___ \ | / ___ *
|
||||||
|
\ > \ / < /
|
||||||
|
* - ○ ○ - *
|
||||||
|
* ( - c - ) *
|
||||||
|
* /- - - -\ *
|
||||||
|
(- __ - - __ -)
|
||||||
|
* \'__)_-_(__'/ *
|
||||||
|
|
||||||
|
die * diy
|
||||||
|
* *
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<pre>(_) __ /| | | |\ | _ _ ._ _ |_ ._ _
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
23
themes/HOD2k18/layouts/partials/furby-stars.html
Normal file
23
themes/HOD2k18/layouts/partials/furby-stars.html
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
<div id="illustrazione">
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<pre>
|
||||||
|
* *
|
||||||
|
* *
|
||||||
|
hack * * or
|
||||||
|
* ___ \ | / ___ *
|
||||||
|
\ > \ / < /
|
||||||
|
* - ○ ○ - *
|
||||||
|
* ( - c - ) *
|
||||||
|
* /- - - -\ *
|
||||||
|
(- __ - - __ -)
|
||||||
|
* \'__)_-_(__'/ *
|
||||||
|
die diy
|
||||||
|
* * *
|
||||||
|
* *
|
||||||
|
</pre>
|
||||||
|
</div>
|
||||||
|
<pre>(_) __ /| | | |\ | _ _ ._ _ |_ ._ _
|
||||||
|
_) | |_| | \| (_) \/ (/_ | | | |_) | (/_</pre>
|
||||||
|
</div>
|
||||||
|
</div>
|
25
themes/HOD2k18/layouts/partials/header.html
Normal file
25
themes/HOD2k18/layouts/partials/header.html
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ .Site.LanguageCode | default "it" }}">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<title>{{ .Title }}</title>
|
||||||
|
{{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }}
|
||||||
|
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
|
||||||
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/style.css">
|
||||||
|
{{ if .RSSLink -}}<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title }}">{{- end }}
|
||||||
|
{{ .Hugo.Generator }}
|
||||||
|
</head>
|
||||||
|
<body><!--
|
||||||
|
<header>
|
||||||
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
{{ range .Site.Menus.main }}
|
||||||
|
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
-->
|
9
themes/HOD2k18/layouts/partials/pagination.html
Normal file
9
themes/HOD2k18/layouts/partials/pagination.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<div>
|
||||||
|
{{ if .Paginator.HasPrev }}
|
||||||
|
<a href="{{ .Paginator.Prev.URL }}">Previous Page</a>
|
||||||
|
{{ end }}
|
||||||
|
{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
|
||||||
|
{{ if .Paginator.HasNext }}
|
||||||
|
<a href="{{ .Paginator.Next.URL }}">Next Page</a>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
29
themes/HOD2k18/layouts/partials/raggiungerci.html
Normal file
29
themes/HOD2k18/layouts/partials/raggiungerci.html
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<p id="call">
|
||||||
|
Spazio Sociale Autogestito XM24 via Fioravanti 24, Bologna
|
||||||
|
|
||||||
|
XM24 è uno Spazio Pubblico Autogestito basato sull’antifascismo, antisessismo ed antirazzismo. Fascist, xenofob, omofob, sessist non sono benvenut* né il alcun modo tollerat*
|
||||||
|
Come arrivare all’XM24
|
||||||
|
Dall’aereoporto Marconi (BLQ)
|
||||||
|
Più economico:
|
||||||
|
|
||||||
|
Uscito dal terminal “Arrivi” dirigiti a sinistra, passa attraverso il parcheggio autobus e segui il percorso pedonale fino ad arrivare ad una grande rotonda. Attraversa la strada, passa sotto il cavalcavia e dopo 100 metri sulla destra trovi la fermata “Birra” dove passa il bus 81/91 che ti lascia in stazione centrale. Prosegui seguendo le indicazioni qui sotto. Il biglietto urbano si può fare nel bar/tabacchino di fronte alla fermata. Fuck the BLQ.
|
||||||
|
Più costoso
|
||||||
|
|
||||||
|
Prendi il bus BLQ di fronte all’aeroporto e scendi in stazione centrale. Prosegui seguendo le indicazioni qui sotto.
|
||||||
|
Dalla stazione centrale
|
||||||
|
A piedi/In bici
|
||||||
|
|
||||||
|
Esci dal retro della stazione (“Uscita via Carracci”) attraversa la strada e gira a sinistra fino ad incontare sulla tua destra via Fioravanti (noterai un grosso edificio a vetri). Percorrila per circa 700 metri e sulla sinistra troverai l’ex-mercato dove sta XM24, prosegui 100 metri e arriva alla rotonda, vicino alla paretona gigante col murales c’è l’entrata.
|
||||||
|
In autobus
|
||||||
|
|
||||||
|
Sei sicur*? Fai prima a piedi! Comunque, le linee 21, 27, 25, 35 passano tutte nei pressi dell’uscita principale della stazione (Medaglie d’oro, Autostazione, Indipendenza) e arrivano fino Piazza dell’Unità, da li potete prosegui a piedi per circa 550 metri lungo Via Tibaldi o via Bolognese fino ad arrivare di fronte all’ex-mercato ortofrutticolo, vai verso la rotonda: vicino alla parete con il murale gigante c’è l’entrata principale. Se prendi l’autobus 11 puoi scendere alla seconda fermata di Via Bolognese, a circa 100 metri dalla rotonda.
|
||||||
|
|
||||||
|
Ulteriori informazioni sui servizi di linea: TPER
|
||||||
|
In auto
|
||||||
|
|
||||||
|
be arrivi da ovest esci dall’autostrada a Borgo Panigale e prendi la tangenziale in direzione S.Lazzaro.
|
||||||
|
Se arrivi da nord esci dall’autostrada a Bologna Arcoveggio e prendi la tangenziale in direzione Casalecchio.
|
||||||
|
Se arrivi da est/sud esci dall’autostrada a S.Lazzaro e prendi la tangenziale in direzione Casalecchio.
|
||||||
|
|
||||||
|
In ogni caso esci dalla tangenziale all’uscita 6 zona Arcoveggio/Corticella. Percorri via Corticella andando verso il centro, per un paio di km. Arrivati al semaforo di Piazza dell’Unità per le auto la svolta è obbligata a destra in Via Bolognese. Percorrila tutta arrivando alla rotonda e sulla sinistra puoi vedere XM24. Trova parcheggio (dentro ad XM NON c’è posto).
|
||||||
|
</p>
|
14
themes/HOD2k18/layouts/partials/sidebar.html
Normal file
14
themes/HOD2k18/layouts/partials/sidebar.html
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<aside>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<h3>LATEST POSTS</h3>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<ul>
|
||||||
|
{{ range first 5 .Site.Pages }}
|
||||||
|
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</aside>
|
13
themes/HOD2k18/layouts/partials/summary.html
Normal file
13
themes/HOD2k18/layouts/partials/summary.html
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<article>
|
||||||
|
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
||||||
|
<time>{{ .Date.Format "02.01.2006 15:04" }}</time>
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
|
||||||
|
{{ end }}
|
||||||
|
<div>
|
||||||
|
{{ .Summary }}
|
||||||
|
{{ if .Truncated }}
|
||||||
|
<a href="{{ .Permalink }}">Read more...</a>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</article>
|
4
themes/HOD2k18/layouts/partials/sunglasses.html
Normal file
4
themes/HOD2k18/layouts/partials/sunglasses.html
Normal file
File diff suppressed because one or more lines are too long
40
themes/HOD2k18/layouts/partials/talk-calendar.html
Normal file
40
themes/HOD2k18/layouts/partials/talk-calendar.html
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<!--https://discourse.gohugo.io/t/how-to-use-hugo-template-variables-in-css/4464/13-->
|
||||||
|
<style>
|
||||||
|
{{ range .Site.RegularPages }}
|
||||||
|
#{{ replace .Title " " "_" }}:target > .descrizione-talk{
|
||||||
|
display:block !important;
|
||||||
|
margin-bottom:0;
|
||||||
|
}
|
||||||
|
#{{ replace .Title " " "_" }}:target > .filler{
|
||||||
|
margin-bottom: -1em !important;
|
||||||
|
}
|
||||||
|
#{{ replace .Title " " "_" }}:target > .filler >.title-wrapper{
|
||||||
|
border-bottom:5pt solid #000001 !important;
|
||||||
|
}
|
||||||
|
{{ end }}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<section id="calendario">
|
||||||
|
<ul>
|
||||||
|
<div id="overflow-scroll">
|
||||||
|
{{ range .Site.RegularPages }}
|
||||||
|
<li id="{{ replace .Title " " "_" }}">
|
||||||
|
<div class="filler">
|
||||||
|
<div class="title-wrapper">
|
||||||
|
<div class="orario"> 09.00 </div>
|
||||||
|
<!--<h4><a class="titolo" href="{{ .Permalink }}">{{ .Title }}</a></h4>-->
|
||||||
|
<a class="titolo" href="#{{ replace .Title " " "_" }}">
|
||||||
|
<h4>{{ .Title }}</h4>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
</div>
|
||||||
|
<p class="descrizione-talk">
|
||||||
|
{{ .Title }}
|
||||||
|
{{ end }}
|
||||||
|
</p>
|
||||||
|
</li>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
</section>
|
0
themes/HOD2k18/layouts/partials/talk-list.html
Normal file
0
themes/HOD2k18/layouts/partials/talk-list.html
Normal file
87
themes/HOD2k18/static/css/style-old.scss
Normal file
87
themes/HOD2k18/static/css/style-old.scss
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
$breakpoint-phone: 600px;
|
||||||
|
$breakpoint-tablet: 900px;
|
||||||
|
$breakpoint-normal-screen: 1200px;
|
||||||
|
$breakpoint-big-screen: 1800px;
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin:0;
|
||||||
|
padding:0;
|
||||||
|
background: #000001;
|
||||||
|
color: #37ffad;
|
||||||
|
font-family: monospace;
|
||||||
|
width:100%;
|
||||||
|
@media screen and (max-width: $breakpoint-normal-screen) {
|
||||||
|
display:flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
header{
|
||||||
|
flex:1 1 100%;
|
||||||
|
}
|
||||||
|
main{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
@media screen and (max-width: $breakpoint-normal-screen) {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
article{
|
||||||
|
max-width:42em;
|
||||||
|
margin:auto;
|
||||||
|
}
|
||||||
|
aside{
|
||||||
|
border:solid 1pt yellow;
|
||||||
|
padding:2em 3em;
|
||||||
|
max-width: 42em;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
section{
|
||||||
|
width:100%;
|
||||||
|
ul{
|
||||||
|
display: flex;
|
||||||
|
list-style-type: none;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
width:80%;
|
||||||
|
margin:auto;
|
||||||
|
li{
|
||||||
|
display:flex;
|
||||||
|
.orario{
|
||||||
|
width:4em;
|
||||||
|
background:red;
|
||||||
|
height:1.3em;
|
||||||
|
color:white;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
h4{
|
||||||
|
margin:0 1em;
|
||||||
|
/*
|
||||||
|
a{
|
||||||
|
{{ range .Site.RegularPages }}
|
||||||
|
# {{ replace .Title " " "_" }}:target > .descrizione-talk{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
{{ end }}
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
flex:1 1 80%;
|
||||||
|
margin-bottom: 0.7em;
|
||||||
|
height:4em;
|
||||||
|
text-decoration:none;
|
||||||
|
border:solid 1pt white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: $breakpoint-phone) {
|
||||||
|
main{
|
||||||
|
margin: 0 5% 0 5%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
background-color: yellow;
|
||||||
|
}
|
176
themes/HOD2k18/static/css/style.css
Normal file
176
themes/HOD2k18/static/css/style.css
Normal file
|
@ -0,0 +1,176 @@
|
||||||
|
body {
|
||||||
|
font-family: monospace;
|
||||||
|
width: 100%;
|
||||||
|
background-color: #000001;
|
||||||
|
color: #37ffad;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
body a {
|
||||||
|
color: #ff33cc;
|
||||||
|
}
|
||||||
|
body a:visited {
|
||||||
|
color: #cc0099;
|
||||||
|
}
|
||||||
|
body pre {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
body main {
|
||||||
|
width: 100%;
|
||||||
|
height: 98vh;
|
||||||
|
background: #000001;
|
||||||
|
display: flex;
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
|
body main {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body main #scrollable-column {
|
||||||
|
display: flex;
|
||||||
|
width: 80%;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
|
body main #scrollable-column {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 900px) {
|
||||||
|
body main #scrollable-column #raggiungerci {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 3em;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #raggiungerci .descrizione-talk {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column {
|
||||||
|
width: 100%;
|
||||||
|
background-color: #000001;
|
||||||
|
z-index: 33;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
|
body main #scrollable-column #right-column {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
@media screen and (min-width: 900px) {
|
||||||
|
body main #scrollable-column #right-column #calendario {
|
||||||
|
position: fixed;
|
||||||
|
right: 10em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul {
|
||||||
|
overflow-y: scroll;
|
||||||
|
max-width: 45em;
|
||||||
|
list-style-type: none;
|
||||||
|
background: transparent;
|
||||||
|
padding: 1em;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
max-height: 80%;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul #overflow-scroll {
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li .filler {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li .title-wrapper {
|
||||||
|
display: flex;
|
||||||
|
border-top: 1pt solid white;
|
||||||
|
border-right: 1pt solid white;
|
||||||
|
border-left: 1pt solid white;
|
||||||
|
border-bottom: 1pt solid white;
|
||||||
|
padding: 0.1em;
|
||||||
|
margin-bottom: -5px;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li .title-wrapper .orario {
|
||||||
|
color: #37ffad;
|
||||||
|
height: 1.2em;
|
||||||
|
width: 4em;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li .title-wrapper h4 {
|
||||||
|
height: 1.2em;
|
||||||
|
margin: 0 1em;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul li .title-wrapper h4 a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul .descrizione-talk {
|
||||||
|
display: none;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
padding: 1em 0 2em 2em;
|
||||||
|
border-top: 1pt solid white;
|
||||||
|
border-right: 1pt solid white;
|
||||||
|
border-left: 1pt solid white;
|
||||||
|
border-bottom: 1pt solid white;
|
||||||
|
max-width: 75%;
|
||||||
|
hyphens: auto;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #calendario ul .titolo:target + .descrizionedescrizione-talk {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #right-column #raggiungerci {
|
||||||
|
background-color: #000001;
|
||||||
|
z-index: 100;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column {
|
||||||
|
max-width: 45em;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 900px) {
|
||||||
|
body main #scrollable-column #left-column {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column #illustrazione {
|
||||||
|
margin-top: 1em;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column #illustrazione .ascii-wrapper pre {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column #illustrazione .text-wrapper {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column #illustrazione .text-wrapper .text-offset {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
height: 50em;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
body main #scrollable-column #left-column #illustrazione #call {
|
||||||
|
padding-top: 4em;
|
||||||
|
margin-bottom: 0;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
}
|
||||||
|
body footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 3em;
|
||||||
|
background: #000001;
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=style.css.map */
|
1
themes/HOD2k18/static/css/style.css.map
Normal file
1
themes/HOD2k18/static/css/style.css.map
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"sourceRoot":"","sources":["style.scss"],"names":[],"mappings":"AASA;EACE;EACA;EACA,kBARS;EAST,OARW;EASX;EACA;;AAEA;EACE,OAZO;;AAeT;EACE,OAfW;;AAkBb;EACE;;AAGF;EACE;EACA;EACA;EACA;EACA;;AACA;EANF;IAOI;;;AAGF;EAcE;EACA;EACA;;AAfA;EADF;IAEI;;;AAEF;EACE;IACE;IACA;;EAEA;IACE;;;AAQN;EACE;EACA,kBAvDG;EAwDH;EACA;EACA;;AACA;EANF;IAOI;;;AAGF;EACE;;AACA;EAFF;IAGI;IACA;;;AAGF;EAIE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAVA;EACE;;AAWF;EACE;EACA;;AAEA;EACE;EACA;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE,OAtGL;EAuGK;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGF;EACE;;AAKN;EACE,kBA5IC;EA6ID;EACA;;AAIJ;EACE;;AACA;EAFF;IAGI;;;AAGF;EACE;EACA;EACA;;AAGE;EACE;;AAIJ;EACE;;AAEA;EACE;EACA;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAOV;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA","file":"style.css"}
|
200
themes/HOD2k18/static/css/style.scss
Normal file
200
themes/HOD2k18/static/css/style.scss
Normal file
|
@ -0,0 +1,200 @@
|
||||||
|
$breakpoint-phone: 600px;
|
||||||
|
$breakpoint-tablet: 900px;
|
||||||
|
$breakpoint-normal-screen: 1200px;
|
||||||
|
$breakpoint-big-screen: 1800px;
|
||||||
|
$BG-color: #000001;
|
||||||
|
$text-color: #37ffad;
|
||||||
|
$new-link: #ff33cc;
|
||||||
|
$visited-link: #cc0099;
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: monospace;
|
||||||
|
width: 100%;
|
||||||
|
background-color: $BG-color;
|
||||||
|
color: $text-color;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: $new-link;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: $visited-link;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
width: 100%;
|
||||||
|
height: 98vh;
|
||||||
|
background: #000001;
|
||||||
|
display: flex;
|
||||||
|
overflow: scroll;
|
||||||
|
@media screen and (max-width: $breakpoint-tablet) {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
#scrollable-column {
|
||||||
|
@media screen and (max-width: $breakpoint-tablet) {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
@media screen and (min-width: $breakpoint-tablet) {
|
||||||
|
#raggiungerci {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 3em;
|
||||||
|
|
||||||
|
.descrizione-talk {
|
||||||
|
padding: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
display: flex;
|
||||||
|
width: 80%;
|
||||||
|
margin: auto;
|
||||||
|
|
||||||
|
#right-column {
|
||||||
|
width: 100%;
|
||||||
|
background-color: $BG-color;
|
||||||
|
z-index: 33;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
@media screen and (max-width: $breakpoint-tablet) {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#calendario {
|
||||||
|
height: 100%;
|
||||||
|
@media screen and (min-width: $breakpoint-tablet) {
|
||||||
|
position: fixed;
|
||||||
|
right: 10em;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul {
|
||||||
|
#overflow-scroll {
|
||||||
|
overflow-y: hidden;
|
||||||
|
}
|
||||||
|
overflow-y: scroll;
|
||||||
|
max-width: 45em;
|
||||||
|
list-style-type: none;
|
||||||
|
background: transparent;
|
||||||
|
padding: 1em;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
max-height: 80%;
|
||||||
|
|
||||||
|
li {
|
||||||
|
flex-wrap: wrap;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
|
||||||
|
.filler {
|
||||||
|
display: flex;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-wrapper {
|
||||||
|
display: flex;
|
||||||
|
border-top: 1pt solid white;
|
||||||
|
border-right: 1pt solid white;
|
||||||
|
border-left: 1pt solid white;
|
||||||
|
border-bottom: 1pt solid white;
|
||||||
|
padding: 0.1em;
|
||||||
|
margin-bottom: -5px;
|
||||||
|
z-index: 2;
|
||||||
|
|
||||||
|
.orario {
|
||||||
|
color: $text-color;
|
||||||
|
height: 1.2em;
|
||||||
|
width: 4em;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
height: 1.2em;
|
||||||
|
margin: 0 1em;
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.descrizione-talk {
|
||||||
|
display: none;
|
||||||
|
flex: 1 1 100%;
|
||||||
|
padding: 1em 0 2em 2em;
|
||||||
|
border-top: 1pt solid white;
|
||||||
|
border-right: 1pt solid white;
|
||||||
|
border-left: 1pt solid white;
|
||||||
|
border-bottom: 1pt solid white;
|
||||||
|
max-width: 75%;
|
||||||
|
hyphens: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titolo:target+.descrizionedescrizione-talk {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#raggiungerci {
|
||||||
|
background-color: $BG-color;
|
||||||
|
z-index: 100;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#left-column {
|
||||||
|
max-width: 45em;
|
||||||
|
@media screen and (max-width: $breakpoint-tablet) {
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#illustrazione {
|
||||||
|
margin-top: 1em;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
.ascii-wrapper {
|
||||||
|
pre {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-wrapper {
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.text-offset {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
height: 50em;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#call {
|
||||||
|
padding-top: 4em;
|
||||||
|
margin-bottom: 0;
|
||||||
|
padding-bottom: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
height: 3em;
|
||||||
|
background: #000001;
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
12
themes/HOD2k18/theme.toml
Normal file
12
themes/HOD2k18/theme.toml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name = "HOD2k18"
|
||||||
|
license = "MIT"
|
||||||
|
licenselink = "https://github.com/vimux/blank/blob/master/LICENSE.md"
|
||||||
|
description = "Template for Hack-or-d(i|y)e 2018"
|
||||||
|
homepage = ""
|
||||||
|
tags = ["", "", "", ""]
|
||||||
|
features = ["blog"]
|
||||||
|
min_version = 0.19
|
||||||
|
|
||||||
|
[author]
|
||||||
|
name = "fillotassi"
|
||||||
|
homepage = "https://git.lattuga.net/fillotassi"
|
Loading…
Reference in a new issue