parent
e0de01dc05
commit
7d1d36ac8d
@ -0,0 +1,20 @@ |
|||||||
|
<meta charset="utf-8"> |
||||||
|
<link rel="stylesheet" href="assets/style.css"> |
||||||
|
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
||||||
|
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||||
|
|
||||||
|
<!-- |
||||||
|
|
||||||
|
Generated by a hacky Rust script that you can find at |
||||||
|
|
||||||
|
https://git.ondrovo.com/MightyPork/bread-gallery |
||||||
|
|
||||||
|
Pictures are free to use for any purpose. |
||||||
|
|
||||||
|
See my blog at www.ondrovo.com for contact & more |
||||||
|
|
||||||
|
--> |
||||||
|
|
||||||
|
<title>{title}</title> |
@ -1,4 +1,4 @@ |
|||||||
<section class="BreadThumb" onclick="location.href='{detail_url}'"> |
<section class="BreadThumb" onclick="location.href='{detail_url}'"> |
||||||
<header><a href="{detail_url}">{title}</a></header> |
<header><a href="{detail_url}">{title}</a></header> |
||||||
<img src="{img_src}" alt="{img_alt}"> |
<img src="{img_src}" alt="{img_alt}"> |
||||||
</section> |
</section> |
||||||
|
@ -1,25 +1,21 @@ |
|||||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||||
<html lang="en"> |
<html lang="en"> |
||||||
<head> |
<head> |
||||||
<meta charset="utf-8"> |
{head} |
||||||
<title>Breads</title> |
|
||||||
<link rel="stylesheet" href="assets/style.css"> |
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
|
||||||
</head> |
</head> |
||||||
<body> |
<body> |
||||||
<h1>{title}</h1> |
<h1>{title}</h1> |
||||||
|
|
||||||
<section class="BreadDetail"> |
<section class="BreadDetail"> |
||||||
<div class="note">{note}</div> |
<div class="note"> |
||||||
|
{note} |
||||||
|
</div> |
||||||
|
|
||||||
<div class="images"> |
<div class="images"> |
||||||
{images} |
{images} |
||||||
</div> |
</div> |
||||||
</section> |
</section> |
||||||
|
|
||||||
<p id="crumb"><a href="index.html">Back to gallery</a></p> |
<p id="crumb"><a href="index.html">Back to gallery</a></p> |
||||||
</body> |
</body> |
||||||
</html> |
</html> |
||||||
|
@ -1,21 +1,15 @@ |
|||||||
<!DOCTYPE html> |
<!DOCTYPE html> |
||||||
<html lang="en"> |
<html lang="en"> |
||||||
<head> |
<head> |
||||||
<meta charset="utf-8"> |
{head} |
||||||
<title>Breads</title> |
</head> |
||||||
<link rel="stylesheet" href="assets/style.css"> |
<body> |
||||||
|
<h1>Piggo's Bread Gallery</h1> |
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
<p id="crumb">Like and <a href="feed.xml">subscribe</a></p> |
||||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> |
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
|
||||||
</head> |
|
||||||
<body> |
|
||||||
<h1>Piggo's Bread Gallery</h1> |
|
||||||
|
|
||||||
<p id="crumb">Like and <a href="feed.xml">subscribe</a></p> |
<div class="MainGallery"> |
||||||
|
{breads} |
||||||
<div class="MainGallery"> |
</div> |
||||||
{breads} |
</body> |
||||||
</div> |
|
||||||
</body> |
|
||||||
</html> |
</html> |
||||||
|
Loading…
Reference in new issue