add contacts

This commit is contained in:
Pavol Rusnak 2013-06-03 23:45:28 +02:00
parent 2a8b9c7f93
commit 0364ecc761
7 changed files with 34 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,3 +1,4 @@
doprava.html doprava.html
index.html index.html
kontakty.html
pomoc.html pomoc.html

View file

@ -13,7 +13,7 @@ DATAPATH=//table[@class="stdstationtbl"]/./tr[3]//table/tr[position()>1]
#IMGURL2=http://vvv.chmi.cz/hydro/graph/big/307225_Q.png #IMGURL2=http://vvv.chmi.cz/hydro/graph/big/307225_Q.png
#DATAPATH=//table[2]//tr[3]/td//table//tr[position()>1] #DATAPATH=//table[2]//tr[3]/td//table//tr[position()>1]
all: index.html doprava.html pomoc.html all: index.html doprava.html pomoc.html kontakty.html
refresh: refresh:
wget '$(IMGURL1)' -O data/stav.png wget '$(IMGURL1)' -O data/stav.png

View file

@ -4,7 +4,7 @@
%meta(charset="utf-8") %meta(charset="utf-8")
%link(rel="icon" type="image/png" href="favicon.png") %link(rel="icon" type="image/png" href="favicon.png")
%link(rel="stylesheet" type="text/css" href="style.css") %link(rel="stylesheet" type="text/css" href="style.css")
%title Povodne - Doprava %title Povodeň - Doprava
%body %body
%ul#navbar %ul#navbar
@ -12,6 +12,7 @@
%li <a href='index.html'>Voda</a> %li <a href='index.html'>Voda</a>
%li.active <a href='doprava.html'>Doprava</a> %li.active <a href='doprava.html'>Doprava</a>
%li <a href='pomoc.html'>Nabídky pomoci</a> %li <a href='pomoc.html'>Nabídky pomoci</a>
%li <a href='kontakty.html'>Kontakty</a>
.content .content

View file

@ -4,7 +4,7 @@
%meta(charset="utf-8") %meta(charset="utf-8")
%link(rel="icon" type="image/png" href="favicon.png") %link(rel="icon" type="image/png" href="favicon.png")
%link(rel="stylesheet" type="text/css" href="style.css") %link(rel="stylesheet" type="text/css" href="style.css")
%title Povodne - Voda %title Povodeň - Voda
%body %body
%ul#navbar %ul#navbar
@ -12,6 +12,7 @@
%li.active <a href='index.html'>Voda</a> %li.active <a href='index.html'>Voda</a>
%li <a href='doprava.html'>Doprava</a> %li <a href='doprava.html'>Doprava</a>
%li <a href='pomoc.html'>Nabídky pomoci</a> %li <a href='pomoc.html'>Nabídky pomoci</a>
%li <a href='kontakty.html'>Kontakty</a>
.content .content
%table.twocolumn %table.twocolumn

22
kontakty.haml Normal file
View file

@ -0,0 +1,22 @@
!!! 5
%html
%head
%meta(charset="utf-8")
%link(rel="icon" type="image/png" href="favicon.png")
%link(rel="stylesheet" type="text/css" href="style.css")
%title Povodeň - Kontakty
%body
%ul#navbar
%li.logo &nbsp;
%li <a href='index.html'>Voda</a>
%li <a href='doprava.html'>Doprava</a>
%li <a href='pomoc.html'>Nabídky pomoci</a>
%li.active <a href='kontakty.html'>Kontakty</a>
.content
%ul#kontakty
%li <b>Povodňová infolinka</b>: 1234, 800 123 003
%li <b>Informace o MHD</b>: 296 191 817
%li <b>Povodí Vltavy</b>: 221 401 495

View file

@ -4,7 +4,7 @@
%meta(charset="utf-8") %meta(charset="utf-8")
%link(rel="icon" type="image/png" href="favicon.png") %link(rel="icon" type="image/png" href="favicon.png")
%link(rel="stylesheet" type="text/css" href="style.css") %link(rel="stylesheet" type="text/css" href="style.css")
%title Povodne - Nabídky pomoci %title Povodeň - Nabídky pomoci
%body %body
%ul#navbar %ul#navbar
@ -12,6 +12,7 @@
%li <a href='index.html'>Voda</a> %li <a href='index.html'>Voda</a>
%li <a href='doprava.html'>Doprava</a> %li <a href='doprava.html'>Doprava</a>
%li.active <a href='pomoc.html'>Nabídky pomoci</a> %li.active <a href='pomoc.html'>Nabídky pomoci</a>
%li <a href='kontakty.html'>Kontakty</a>
.content .content

View file

@ -87,3 +87,7 @@ table#table24h th {
#pomocnici li { #pomocnici li {
line-height: 2em; line-height: 2em;
} }
#kontakty li {
line-height: 2em;
}