forked from GCCSD/flisol-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.php
103 lines (92 loc) · 4.85 KB
/
template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="pr-br">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" href="<?php echo URL; ?>css/template.css" type="text/css" media="screen" />
<title><?php echo $titulo; ?></title>
</head>
<body>
<div id="tudo">
<div id="layout">
<ul id="menu">
<li><a href="<?php echo URL; ?>">Flisol</a></li>
<li><a href="<?php echo URL; ?>data_hora">Data, Hora e Local</a></li>
<li><a href="<?php echo URL; ?>programacao">Programação</a></li>
<li><a href="<?php echo URL; ?>prepare-se">Prepare-se!</a></li>
<li><a href="<?php echo URL; ?>organizadores">Organização</a></li>
<li><a href="<?php echo URL; ?>fotos">Fotos</a></li>
</ul>
<img src="<?php echo URL; ?>imagens/topo_flisol.png" alt="Flisol em Santos, abril de 2011" />
<div class="limpar"></div>
<div id="lateral">
<iframe src="https://spreadsheets.google.com/embeddedform?formkey=dDJmTzhteW1WSnVSa1FxVjFzMG5UcUE6MQ" width="300" height="500" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe>
<h1>Realização</h1>
<ul>
<li>
<a href="http://gccsd.com.br/" title="Grupo de Compartilhamento do Conhecimento Santos Dumont">
<img src="<?php echo URL; ?>imagens/gccsd.png" alt="GCCSD" />
</a>
</li>
</ul>
<h1>Patrocínio</h1>
<ul>
<li>
<a href="http://www.apensystem.com/" title="Apen System">
<img src="<?php echo URL; ?>imagens/apen.png" alt="Apen System" />
</a>
</li>
<br />
<li>
<a href="http://casoft.info/" title="CaSoft">
<img src="<?php echo URL; ?>imagens/casoft.png" alt="CaSoft" />
</a>
</li>
<br />
<li>
<a href="http://jacaretecnologia.com.br/" title="Jacaré Tecnologia">
<img src="<?php echo URL; ?>imagens/jacare.png" alt="Jacaré Tecnologia" />
</a>
</li>
<br />
<li>
<a href="http://www.tecnoponta.com.br/" title="Tecnoponta">
<img src="<?php echo URL; ?>imagens/tecnoponta.png" alt="Tecnoponta" />
</a>
</li>
</ul>
<h1>Apoio</h1>
<ul>
<li>
<a href="microcamp" title="Microcamp Guarujá">
<img src="<?php echo URL; ?>imagens/microcamp.jpg" alt="Microcamp Guarujá" />
</a>
</li>
<li>
<a href="http://www.lojainfoweb.com/" title="Infoweb">
<img src="<?php echo URL; ?>imagens/infoweb.png" alt="Infoweb" />
</a>
</li>
<li>
<a href="Logical" title="Logical">
<img src="<?php echo URL; ?>imagens/logical.jpg" alt="Logical" />
</a>
</li>
</ul>
</div>
<div id="conteudo">
<?php include('paginas/'.$pagina); ?>
</div>
<div class="limpar"></div>
<div id="rodape">
<div id="meio">
<p>Organização <a href="http://gccsd.com.br/" title="Grupo de Compartilhamento do Conhecimento Santos Dumont">GCCSD</a></p>
<p>Festival Latino Americano de Instalação de Software Livre - Santos/SP</p>
<p>Site desenvolvido por: <a href="http://twitter.com/as2oliveira" title="Twitter do Alex">Alex</a>, <a href="http://twitter.com/DiegoSouza9" title="Twitter do Apu">Apu</a>, <a href="http://cassialuz.casoft.info/" title="Blog da Cássia Luz">Cássia Luz</a> e <a href="http://infog.casoft.info/" title="Blog do InFog">InFog</a></p>
</div>
<div class="limpar"></div>
</div>
<div class="limpar"></div>
</div>
</div>
</body>
</html>