Skip to content

Commit

Permalink
bitcoin section
Browse files Browse the repository at this point in the history
  • Loading branch information
bliotti committed Sep 30, 2023
1 parent ee735c2 commit 1fb0e49
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 8 deletions.
4 changes: 4 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"MD013": false,
"no-inline-html": false
}
22 changes: 22 additions & 0 deletions content/bitcoin/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
+++
title = "Bitcoin"
template = "bitcoin.html"
+++

#### Links

<a
style="text-decoration: underline;"
href="https://chaincode.gitbook.io/seminars/bitcoin-protocol-development"
target=_blank>
chaincode bitcoin protocol development
</a>

#### Podcasts

<a
style="text-decoration: underline;"
href="https://bitcoin.review"
target=_blank>
bitcoin.review
</a>
10 changes: 10 additions & 0 deletions templates/bitcoin.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{% extends "base.html" %}
{% block content %}
{% include "navbar.html" %}
<br />
{{ section.content | safe }}
<br />
<br />

{% include "navbar.html" %}
{% endblock content %}
6 changes: 4 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends "base.html" %} {% block content %}
<header class="wf mb3">
<h1 class="tc mt5">
<a href="/" class="cl-near-black"><h4>bliotti</h4></a>
<a href="/" class="cl-near-black">
<h4>bliotti</h4>
</a>
</h1>

<div class="flex flex-row j-center">
Expand All @@ -28,4 +30,4 @@ <h1 class="tc mt5">
</div>
</div>
</header>
{% include "navbar.html" %} {{ section.content | safe }} {% endblock content %}
{% include "navbar.html" %} {{ section.content | safe }} {% endblock content %}
13 changes: 7 additions & 6 deletions templates/navbar.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<!-- <nav class="wf tc f3">
<nav class="wf tc f3">
<hr />
<a class="cl-near-black" href="/">home</a>
<!-- |
<a class="cl-near-black" href="/about/">about</a> -->
<!-- |
<a class="cl-near-black" href="/bookshelf/">bookshelf</a> -->
|
<a class="cl-near-black" href="/about/">about</a>
|
<a class="cl-near-black" href="/bookshelf/">bookshelf</a>
<a class="cl-near-black" href="/bitcoin/">bitcoin</a>
<hr />
</nav>
-->
</nav>

0 comments on commit 1fb0e49

Please sign in to comment.