removed unused files; footer template uses footer tags; closed html in frame; game page uses template and variables

small-nav
Mimi Momo 4 years ago
parent 36702a2c2e
commit c0272684d1

@ -10,8 +10,8 @@ def index():
@route('/game') @route('/game')
def game(): def game():
"""game page""" """game page"""
info = {} info = {'title': 'blessfrey - about the game', 'year': datetime.datetime.now()}
return template('game.tpl') return template('game.tpl', info)
@route('/presskit') @route('/presskit')
def presskit(): def presskit():

@ -1,6 +1,8 @@
<!--Footer--> <!--Footer-->
<footer> <footer>
<div class="footer"> <div class="footer">
<footer>
&#169 chimchooree {{year}}<br> &#169 chimchooree {{year}}<br>
</footer>
</div> </div>
</footer> </footer>

@ -7,6 +7,8 @@
<div class="grid"> <div class="grid">
% include('logo-bar.tpl') % include('logo-bar.tpl')
% include('nav.tpl') % include('nav.tpl')
<div class="body-row"> </div>
{{!base}} {{!base}}
@ -15,3 +17,4 @@
% include('footer.tpl') % include('footer.tpl')
</body> </body>
</html>

@ -1,50 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> % rebase('frame.tpl')
<head>
<title>blessfrey - action rpg in godot engine</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="res/styles/game.css">
<link rel="icon" type="image/png" href="res/img/fav.ico" sizes="32x32" />
</head>
<!-- Body -->
<body>
<div class="grid">
<div class="whitespace">
blessfrey.me<br>
</div>
<div class="blessfrey-logo"></div>
<div class="nav-row"></div>
<!--Navigation Bar-->
<div class="nav-grid">
<div class="nav-bar"></div>
<div class="nav-index">
<a href="index.html">
<div class="button">home</div>
</a>
</div>
<div class="nav-game">
<a href="game.html">
<div class="button">game</div>
</a>
</div>
<div class="nav-diary">
<a href="diary.php">
<div class="button">diary</div>
</a>
</div>
<div class="nav-presskit">
<a href="presskit.html">
<div class="button">presskit</div>
</a>
</div>
</div>
<div class="body-row"> </div>
<!--Content--> <!--Content-->
<div class="pages"> <div class="pages">
<div class="textbox desc"> <div class="textbox desc">
@ -110,13 +65,4 @@ Skills are individual powers gained through gameplay which give specific effects
</div> </div>
</div> </div>
<div class="footer-row"> <div class="footer-row"></div>
<footer>
&#169 chimchooree <?php echo date("Y");?>
</footer>
</div>
</div>
</body>
</html>

@ -1,7 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
% rebase('frame.tpl') % rebase('frame.tpl')
<div class="body-row"> </div>
<div class="social"> <div class="social">
<a href="https://twitter.com/lilchimchooree"><img class="img-social-ribbon" src="res/img/ele/twitter-ribbon.png"></a> <a href="https://twitter.com/lilchimchooree"><img class="img-social-ribbon" src="res/img/ele/twitter-ribbon.png"></a>
</div> </div>

@ -1,37 +0,0 @@
<!DOCTYPE html>
<html>
<head>
{{header}}
</head>
<body>
<div class="grid">
{{logo-bar}}
{{nav}}
<div class="body-row"> </div>
<div class="social">
<a href="https://twitter.com/lilchimchooree"><img class="img-social-ribbon" src="res/img/ele/twitter-ribbon.png"></a>
</div>
<div class="bg">
<img class="img-bg-home">
</div>
<div class="footer-row"> </div>
<div class="tweets">
<a class="twitter-timeline" data-width="400" data-height="200" data-theme="dark" href="https://twitter.com/lilchimchooree?ref_src=twsrc%5Etfw">Tweets by lilchimchooree</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
<div class="news">
<center>. •        . <strong>news</strong> ☆      .. . <br></center>
<br>
{{news}}
<br>
<center>.       ★      .. •     .       ☆</center>
</div>
</div>
{{footer}}
</body>
Loading…
Cancel
Save