Compare commits

...

7 commits

Author SHA1 Message Date
45e7008edc Fixes background color 2016-03-05 22:27:07 +01:00
6db75189ef Adds option to add custom html to footer 2016-03-05 22:26:31 +01:00
d18a6ecc61 Edits copyright notice 2016-03-05 22:26:04 +01:00
1fbfee56ce Adds background 2016-03-05 22:22:32 +01:00
7e66d0c092 Adds banner image 2016-03-05 22:19:19 +01:00
2360f5527d Creates call4paper page 2016-03-05 22:13:12 +01:00
130ca3431d Adds header banner 2016-03-05 22:12:51 +01:00
6 changed files with 48 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 KiB

BIN
content/images/banner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

39
content/pages/call.md Normal file
View file

@ -0,0 +1,39 @@
Title: Call for Paper
Date: 2016-03-5 19:00
Slug: call4paper
navbar_sort: 2
lang: it
## CALL FOR PAPER
L'`Hackmeeting` è l'incontro annuale della scena hacker italiana - e non solo -
che quest'anno si terrà a **Pisa dal 3 al 5 Giugno**.
Consideriamo hacker chiunque affronti in maniera attiva e critica qualsiasi
aspetto della propria vita usando curiosità e ingegno.
L'evento è completamente **autogestito** e **aperto**, per consentire una
partecipazione e una varietà di temi più ampie possibile. È uno spazio di
confronto dove per tre giorni, con talk tecnici, laboratori, installazioni,
performances, workshop, si possono condividere conoscenze ed idee, **liberare
saperi!**
Con questo spirito nei mesi che precedono l'evento raccogliamo idee e proposte
da chiunque volesse tenere un talk oppure suggerire un argomento o un relatore.
Le proposte possono essere legate all'informatica o ad altri ambiti e non si
pone alcun limite al livello al quale i temi possono essere trattati.
Solitamente i talk sono presentazioni orali e/o multimediali della durata di
45-60 minuti, e si tengono durante tutto il venerdì e il sabato. Presentazioni
più brevi, chiamate _ten minutes talk_ permetteranno a chi vuole discutere di
un argomento ma non vuole farlo per un'ora intera, di presentarlo in forma "più
leggera".
Le proposte devono essere inviate alla mailing list pubblica di hackmeeting:
<br/>
<center>**hackmeeting [at] inventati [dot] org**</center> <br/>
dove le si potrà discutere insieme a tutti gli
interessati all'evento.
Il programma definitivo dei talk, discusso in mailing list, viene pubblicato
sul sito di hackmeeting alcune settimane prima dell'evento.
Qualsiasi contributo è considerato un arricchimento, quindi invitiamo chiunque
a condividere e confrontare i propri saperi e le proprie curiosità!

View file

@ -41,9 +41,14 @@ PAGE_SAVE_AS = '{slug}.html'
PAGE_LANG_URL = '{slug}.{lang}.html'
PAGE_LANG_SAVE_AS = '{slug}.{lang}.html'
PAGE_BACKGROUND = 'images/background.jpg'
THEME = 'themes/nest/'
# Confs relative to the theme nest
NEST_HEADER_LOGO = 'images/hm2015_banner_468x60.jpg'
NEST_HEADER_IMAGES = 'banner.png'
#For future uses
#NEST_FOOTER_HTML = ''
NEST_COPYRIGHT = u'&copyleft; hackmeeting 1998-2016'
# Pelican bootstrap 3 theme settings
BOOTSTRAP_THEME = 'cyborg'

View file

@ -98,7 +98,7 @@
{% endblock head %}
</head>
<body>
<body {% if PAGE_BACKGROUND %} style="background-image: url('{{ PAGE_BACKGROUND }}');" {% endif %} >
<!-- Header -->
{% block headerstyle %}

View file

@ -7,7 +7,7 @@
{% if page.illustration %}
<div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ page.illustration }}'); background-position: center; background-size: cover; ">
{% elif NEST_HEADER_IMAGES %}
<div class="header-container" style="background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('{{ SITEURL }}/images/{{ NEST_HEADER_IMAGES }}'); background-position: center; background-size: cover;">
<div class="header-container" style="background: #000000 url('{{ SITEURL }}/images/{{ NEST_HEADER_IMAGES }}'); background-position: center; background-size: cover;">
{% else %}
<div class="header-container gradient">
{% endif %}
@ -27,7 +27,7 @@
{% endblock header %}
{% block content %}
<div class="container content">
<div style="text-align: justify;" class="container content background-image: {{ PAGE_BACKGROUND }}">
{{ page.content }}
</div>
{% endblock %}