You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.5 KiB
59 lines
2.5 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<!-- |
|
IMPORT MATERIALIZE CSS ICON FONT FROM GOOGLE. CHOOSE YOUR POISON |
|
1. replace the font completely and edit the corresponding icons in this repository |
|
|
|
2. create a static css file in static/css/ and include a local copy of the Material Icons Font |
|
if you decide to do this, you can download the stylesheet from the |
|
fonts.googleapis.com that is linked in option 3 |
|
--!> |
|
<!--link type="text/css" rel="stylesheet" href="/static/css/font.css" media="screen,projection"/--!> |
|
<!-- 3. Import Google Icon Font from Google itself. This is not recommended, especially if you are developing offline.--> |
|
<!--link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/--!> |
|
<!--Import materialize.css--> |
|
<link type="text/css" rel="stylesheet" href="/static/css/materialize.min.css" media="screen,projection"/> |
|
<link type="text/css" rel="stylesheet" href="/static/css/main.css" media="screen,projection"/> |
|
|
|
<!--Let browser know website is optimized for mobile--> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> |
|
</head> |
|
|
|
<body> |
|
<header> |
|
<nav> |
|
<div class="nav-wrapper light-green darken-3"> |
|
<a href="/" class="brand-logo"> ReDab</a> |
|
<ul id="nav-mobile" class="right hide-on-med-and-down"> |
|
<li><a href="/rezepte">Alle Rezepte</a></li> |
|
</ul> |
|
</div> |
|
</nav> |
|
</header> |
|
<main> |
|
{% block content %}{% endblock %} |
|
<div class="fixed-action-btn"> |
|
<a class="btn-floating btn-large red" href="/neues_rezept"> |
|
<i class="large material-icons">add</i> |
|
</a> |
|
</div> |
|
</main> |
|
<footer class="page-footer light-green darken-3"> |
|
<div class="footer-copyright"> |
|
<div class="container"> |
|
ReDab - <b>Re</b>cipe <b>Da</b>ta <b>B</b>ase. <b>Re</b>zept<b>da</b>ten<b>b</b>ank.<br> |
|
<div class="badges"> |
|
<i>Refreshing Memories</i>: Development started by informaniac at 35C3. |
|
<i>Bun intended</i>: Serves with Buns (and bunintended bugs) from EH19. |
|
<i>Error 451</i>: Gulasch recipe from GPN19 is unavailable for legal reasons. |
|
<i>Gesellschaftsspiele</i>: 'A la carte' was not available at MRMCD19. |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
<!--JavaScript at end of body for optimized loading--> |
|
<script type="text/javascript" src="/static/js/materialize.min.js"></script> |
|
{% block scripts %}{% endblock %} |
|
</body> |
|
</html>
|
|
|