Compare commits

...

3 commits

4 changed files with 51 additions and 19 deletions

12
content/pages/talks.md Normal file
View file

@ -0,0 +1,12 @@
Title: Calendario Talk
Table: 1
Date: 2016-03-5 21:00
Slug: caltalk
Template: tables
navbar_sort: 3
lang: it
## CALENDARIO DEI TALK
Di seguito trovate il programma dei talk di Umberto, Luca e indovina chi?

View file

@ -48,7 +48,7 @@ NEST_HEADER_IMAGES = 'banner.png'
#For future uses #For future uses
#NEST_FOOTER_HTML = '' #NEST_FOOTER_HTML = ''
NEST_COPYRIGHT = u'&copyleft; hackmeeting 1998-2016' NEST_COPYRIGHT = u'Sito realizzato da hackmeeting'
# Pelican bootstrap 3 theme settings # Pelican bootstrap 3 theme settings
BOOTSTRAP_THEME = 'cyborg' BOOTSTRAP_THEME = 'cyborg'
@ -60,10 +60,12 @@ PLUGINS = ['langmenu']
MD_EXTENSIONS = ['toc'] MD_EXTENSIONS = ['toc']
TALKS = { TALKS = {
1: { 'Relat@' : 'ciccio', u'1': { u'Speaker' : u'ciccio',
'Titolo': 'quanto è bello l''ha''ing', u'Title': u'quanto è bello l''ha''ing',
'Abstract': 'dio ''ane quanto è bello l''asinello', u'Abstract': u'dio \'ane quanto è bello l''asinello',
'Stanza': 'Quella piccola', u'Room': u'Quella piccola',
'Orario': '19:00 - 6:00', u'Schedule': u'19:00 - 6:00',
u'Day':'Venerday',
} }
} }

View file

@ -185,7 +185,13 @@
<small><em>Proudly powered by <a href="http://docs.getpelican.com/" target="_blank">pelican</a></em></small><br/> <small><em>Proudly powered by <a href="http://docs.getpelican.com/" target="_blank">pelican</a></em></small><br/>
<small><em>Theme and code by <a href="https://github.com/molivier" target="_blank">molivier</a></em></small><br/> <small><em>Theme and code by <a href="https://github.com/molivier" target="_blank">molivier</a></em></small><br/>
<small>{{ NEST_COPYRIGHT }}</small> <small>{{ NEST_COPYRIGHT }}</small>
{% if NEST_FOOTER_HTML %}<small><em>{{ NEST_FOOTER_HTML }}</em></small>{% endif %} <small><em><a
rel="license"
href="http://creativecommons.org/licenses/by-nc/4.0/"><img
alt="Licenza Creative Commons"
style="border-width:0"
src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png"
/></a></em></small>
</p> </p>
</div> </div>
</div> </div>

View file

@ -5,14 +5,17 @@
<th> <th>
# #
</th> </th>
<th>
Giorno
</th>
<th> <th>
Orario Orario
</th> </th>
<th> <th>
Relat Titolo
</th> </th>
<th> <th>
Titolo Relatore/Relatrice/i
</th> </th>
<th> <th>
Abstract Abstract
@ -20,22 +23,31 @@
<th> <th>
Stanza Stanza
</th> </th>
<th>
{{ TALKS }}
</th>
</tr> </tr>
{% for talk_num, talk in TALKS %} {% for talk_num, talk in TALKS.iteritems() %}
{# Write description of the talk #} {# Write description of the talk #}
<tr> <tr>
<td> <td>
<b>talk_num:</b>
{{ talk_num }} {{ talk_num }}
</td> </td>
{% for col, cont in talk %}
<td> <td>
{{ talk.col }} {{ talk.Day }}
</td>
<td>
{{ talk.Schedule }}
</td>
<td>
{{ talk.Title }}
</td>
<td>
{{ talk.Speaker }}
</td>
<td>
{{ talk.Abstract }}
</td>
<td>
{{ talk.Room }}
</td> </td>
{% endfor %}
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>