-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.py
28 lines (22 loc) · 926 Bytes
/
index.py
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
import webapp2
class index(webapp2.RequestHandler):
def get(self):
f = open('inicio', 'r')
inicio = f.read()
f = open('fim', 'r')
fim = f.read()
page = """
<h1>Não tem conta?</h1>
<p class="lead">Não seja por isso, cadastre-se agora!</p>
<a class="btn btn-large btn-success" href="cadastro">Cadastro</a>
<p class="lead"><br>Site para os jogadores de League of Legends da PUC-Rio!<br>Agora com suporte oficial da representação PUC-Rio perante a Riot!<br><br>Em breve: <br> -Montaremos equipes<br>-Organizaremos torneios<br><br><br>Sugestões,<br>
Críticas,<br>
Quer me ajudar?
</p>
<a class="btn btn-large btn" href="contato">Contato</a>
"""
self.response.write(inicio)
self.response.write(page)
self.response.write(fim)
app = webapp2.WSGIApplication([('/index', index),('/', index)],
debug=True)