prettier identation in html, added a comment

This commit is contained in:
2019-01-26 10:37:36 +01:00
parent e0de01dc05
commit 7d1d36ac8d
7 changed files with 55 additions and 40 deletions
+2 -1
View File
@@ -29,7 +29,8 @@
<title>2018/09/30</title>
<link>https://www.ondrovo.com/bread/2018-09-30.html</link>
<description>
<![CDATA[<i>There's no note about this bread.</i><img src="https://www.ondrovo.com/bread/thumbs/2018-09-30.jpg" alt="dgs - 7 sep 30 cover.jpg"><p>Open the link for more...</p>]]>
<![CDATA[<p>nice crust, but it had huge holes in it. idk why</p>
<img src="https://www.ondrovo.com/bread/thumbs/2018-09-30.jpg" alt="dgs - 7 sep 30 cover.jpg"><p>Open the link for more...</p>]]>
</description>
<guid>https://www.ondrovo.com/bread/2018-09-30.html</guid>
<pubDate>Sun, 30 Sep 2018 12:00:00 +0000</pubDate>
+20
View File
@@ -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>
+4 -4
View File
@@ -1,4 +1,4 @@
<section class="BreadThumb" onclick="location.href='{detail_url}'">
<header><a href="{detail_url}">{title}</a></header>
<img src="{img_src}" alt="{img_alt}">
</section>
<section class="BreadThumb" onclick="location.href='{detail_url}'">
<header><a href="{detail_url}">{title}</a></header>
<img src="{img_src}" alt="{img_alt}">
</section>
+11 -15
View File
@@ -1,25 +1,21 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<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>
<h1>{title}</h1>
<h1>{title}</h1>
<section class="BreadDetail">
<div class="note">{note}</div>
<section class="BreadDetail">
<div class="note">
{note}
</div>
<div class="images">
{images}
</div>
</section>
<div class="images">
{images}
</div>
</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>
</html>
+10 -16
View File
@@ -1,21 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Breads</title>
<link rel="stylesheet" href="assets/style.css">
<head>
{head}
</head>
<body>
<h1>Piggo's Bread Gallery</h1>
<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>
<body>
<h1>Piggo's Bread Gallery</h1>
<p id="crumb">Like and <a href="feed.xml">subscribe</a></p>
<p id="crumb">Like and <a href="feed.xml">subscribe</a></p>
<div class="MainGallery">
{breads}
</div>
</body>
<div class="MainGallery">
{breads}
</div>
</body>
</html>