-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add auto-formatting to blog html (#33)
* format julia * wip * wip * tune * tweak * blah * run blog build on file save - vscode * fix markdown cross-out
- Loading branch information
1 parent
a477184
commit 3d2072a
Showing
12 changed files
with
1,291 additions
and
1,518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,31 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="shortcut icon" type="image/png" href="../../assets/img/favicon.png" /> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<title>$if(rawtitle)$$rawtitle$$else$$title$$endif$</title> | ||
<link rel="stylesheet" type="text/css" href="../../assets/css/main.css" /> | ||
$header$ | ||
</head> | ||
|
||
<head> | ||
<link rel="shortcut icon" type="image/png" href="../../assets/img/favicon.png" /> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>$if(rawtitle)$$rawtitle$$else$$title$$endif$</title> | ||
<link rel="stylesheet" type="text/css" href="../../assets/css/main.css" /> | ||
$header$ | ||
</head> | ||
|
||
<body> | ||
<div class="main-container blog"> | ||
<nav class="blog-navbar" role="navigation"> | ||
@hannahilea: | ||
<a class="nav-link" href="../.." >home</a> | | ||
<a class="nav-link" href="../../projects">projects</a> | | ||
<a class="nav-link" href="..">blog</a> | | ||
<a class="nav-link" href="mailto:[email protected]">contact</a> | ||
</nav> | ||
<h1>$title$</h1> | ||
<body> | ||
<div class="main-container blog"> | ||
<nav class="blog-navbar" role="navigation"> | ||
@hannahilea: | ||
<a class="nav-link" href="../..">home</a> | | ||
<a class="nav-link" href="../../projects">projects</a> | | ||
<a class="nav-link" href="..">blog</a> | | ||
<a class="nav-link" href="mailto:[email protected]">contact</a> | ||
</nav> | ||
<h1>$title$</h1> | ||
$body$ | ||
<hr> | ||
<ul> | ||
<li>created: $created$</li> | ||
<li>last updated: $updated$</li> | ||
<li>tags: $for(tags)$$tags$$sep$, $endfor$</li> | ||
</ul> | ||
</div> | ||
</body> | ||
|
||
<hr /> | ||
<ul> | ||
<li>created: $created$</li> | ||
<li>last updated: $updated$</li> | ||
<li>tags: $for(tags)$$tags$$sep$, $endfor$</li> | ||
</ul> | ||
</div> | ||
</body> | ||
</html> |
812 changes: 429 additions & 383 deletions
812
blog/clapping-music-for-flip-disc-displays/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.