test list files
parent
96c4d9544f
commit
c994ccfe6c
@ -0,0 +1,86 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="eng">
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta charset="UTF-8" />
|
||||
<title>The CookBook</title>
|
||||
<style>
|
||||
.header {
|
||||
padding: 10px 16px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-family: "Coconat";
|
||||
font-size: 80px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-family: "Coconat";
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-color: black;
|
||||
background-image: linear-gradient(0deg, black, white);
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: "Montserrat Alternates";
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.column {
|
||||
float: left;
|
||||
padding: 45px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.left {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.right {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.barcode {
|
||||
width: 120px;
|
||||
height: 50px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header" id="myHeader">
|
||||
<h1>THE COOKBOOK</h1>
|
||||
</div>
|
||||
|
||||
% for function in functions
|
||||
<div class="row">
|
||||
<div class="column left">
|
||||
<h2>
|
||||
${function.title}
|
||||
<img src="${function.barcode}" class="barcode" />
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="column right">
|
||||
<p>☻ ${function.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
% endfor
|
||||
</body>
|
||||
</html>
|
@ -1,95 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang=eng>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta charset="UTF-8">
|
||||
<title>The CookBook</title>
|
||||
<style>
|
||||
|
||||
.header {
|
||||
padding: 10px 16px;
|
||||
color: black;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-family: "Coconat";
|
||||
font-size: 80px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-family: "Coconat";
|
||||
}
|
||||
|
||||
body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: fixed;
|
||||
background-color: black;
|
||||
background-image: linear-gradient(0deg, black, white);
|
||||
}
|
||||
|
||||
p {
|
||||
font-family: "Montserrat Alternates";
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.column {
|
||||
float: left;
|
||||
padding: 45px;
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.left {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
.right {
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
|
||||
.row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.barcode {
|
||||
width= 120px;
|
||||
height= 50px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="header" id="myHeader">
|
||||
<h1 align="center">THE COOKBOOK<h1>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="column left">
|
||||
|
||||
<h2>
|
||||
☻ DOUGH WEAVER [ <img src="barcode.png" alt="barcode_weaver" width="120" height="50"> ]
|
||||
</h2>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="column right">
|
||||
|
||||
<p>☻ Create a unique textual recipe with the Dough Weaver. Spice up your kitchen daydreaming with a custom recipe-mix of already existing dishes!<br>
|
||||
<br>
|
||||
Spice up your kitchen experience by plugging the six black and yellow cables, to A or B, in whatever order you see fit. Then once you are happy with your selection, press the button to submit your custom pattern.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in New Issue