mirror of
https://git.kittycat.homes/zoe/wisdom.git
synced 2024-08-15 03:26:36 +00:00
frakeify
This commit is contained in:
parent
295411d8fa
commit
32e72eb2e2
8 changed files with 178 additions and 44 deletions
|
@ -7,40 +7,13 @@
|
|||
charset="utf-8"
|
||||
name="viewport"
|
||||
/>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
div {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
margin-left: 24%;
|
||||
margin-right: 24%;
|
||||
}
|
||||
a {
|
||||
color: floralwhite;
|
||||
font-size: 40pt;
|
||||
text-align: center;
|
||||
font-family: 'Prata', serif;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
body {
|
||||
background-color: #080808;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body id="body">
|
||||
<div class="main">
|
||||
<a href=".">{{wisdom}}</a>
|
||||
<br>
|
||||
<a href="./frakes">Wisdom website asks you things</a>
|
||||
<a href="./cooking">Cooking wisdom</a>
|
||||
<br>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
28
templates/style.css
Normal file
28
templates/style.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
div {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
margin-left: 24%;
|
||||
margin-right: 24%;
|
||||
}
|
||||
a {
|
||||
color: floralwhite;
|
||||
font-size: 400%;
|
||||
text-align: center;
|
||||
font-family: "Prata", serif;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
body {
|
||||
background-color: #080808;
|
||||
}
|
17
templates/wisdom.html
Normal file
17
templates/wisdom.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html5>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="stylesheet" type="text/css" href="style.css" media="all"/>
|
||||
<title>Wisdom</title>
|
||||
<meta charset="utf-8" name="viewport" />
|
||||
</head>
|
||||
<body id="body">
|
||||
<div class="main">
|
||||
</head />
|
||||
<a href="">{{ wisdom }}</a>
|
||||
<a id="home_link" href=".">home</a>
|
||||
<br />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
17
templates/wisdom.html.tera
Normal file
17
templates/wisdom.html.tera
Normal file
|
@ -0,0 +1,17 @@
|
|||
<!DOCTYPE html5>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<link rel="stylesheet" type="text/css" href="style.css" media="all"/>
|
||||
<title>Wisdom</title>
|
||||
<meta charset="utf-8" name="viewport" />
|
||||
</head>
|
||||
<body id="body">
|
||||
<div class="main">
|
||||
</head />
|
||||
<a href="">{{ wisdom }}</a>
|
||||
<a id="home_link" href=".">home</a>
|
||||
<br />
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue