-
Notifications
You must be signed in to change notification settings - Fork 59
/
index.html
53 lines (46 loc) · 1.53 KB
/
index.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>forkgasm — Lea & Chris’ culinary advenctures</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/avatar.png">
<link rel="stylesheet" href="https://dev.mavo.io/dist/mavo.css"><script src="https://dev.mavo.io/dist/mavo.js"></script>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<h1>
<img src="/logo.svg" alt="">
<a href="/"><img src="/wordmark.svg" alt="forkgasm"></a>
</h1>
<nav>
<a href="/index.html">Recipes</a>
<a href="/restaurants">Restaurants <sup>β</sup></a>
<a href="/about">About</a>
</nav>
</header>
<main class="index">
<section mv-app="recipes" mv-storage="https://github.com/leaverou/forkgasm/recipes.json" mv-plugins="markdown" class="index">
<div class="mv-bar mv-ui mv-fixed" mv-bar="no-login"></div>
<div class="mv-container" mv-list="">
<article property="recipe" mv-list-item style="--image: url([image])" class="recipe-card" mv-order="desc">
<a href="/recipes/[id]">
<img property="image">
<h2 property="name"></h2>
</a>
<p class="hide-on-read">
http://forkgasm.com/recipe/<span property="id" mv-default="[idify(name)]"></span>
</p>
<p property="description"></p>
<p class="tags" mv-list="tag">
<span property="tag" mv-list-item></span>
</p>
</article>
</div>
<a href="?login" class="mv-login mv-logged-out">Login to edit</a>
</section>
</main>
<script src="/forkgasm.js" async></script>
</body>
</html>