Added a place, misc_links, to put random links,

so that everything can be made searcheable
modified:   docs/manifesto/lightning.md
modified:   docs/manifesto/navbar
modified:   docs/manifesto/scalability.md
modified:   docs/pandoc_templates/pandoc.template
modified:   docs/pandoc_templates/style.css
This commit is contained in:
reaction.la 2024-05-09 07:43:23 +00:00
parent ce79e3515d
commit 477f3b0a5b
No known key found for this signature in database
5 changed files with 15 additions and 16 deletions

View File

@ -3,7 +3,6 @@ lang: en
title: >- title: >-
How to do lightning right How to do lightning right
sidebar: false sidebar: false
notmine: false
abstract: >- abstract: >-
Lightning is about to replace SWIFT for international transactions, Lightning is about to replace SWIFT for international transactions,
due to high SWIFT fees, slow transactions, due to high SWIFT fees, slow transactions,

View File

@ -1,4 +1,4 @@
<div class="button-bar"> <div class="button-bar button-group">
<a href="vision.html">vision</a> <a href="vision.html">vision</a>
<a href="scalability.html">scalability</a> <a href="scalability.html">scalability</a>
<a href="social_networking.html">social networking</a> <a href="social_networking.html">social networking</a>

View File

@ -14,7 +14,10 @@ abstract: >-
and each peer and client wallet only has to evaluate the root recursive snark and each peer and client wallet only has to evaluate the root recursive snark
to prove the validity of every transaction that ever there was, to prove the validity of every transaction that ever there was,
including all those lost in the mists of time. including all those lost in the mists of time.
... misc_links: >-
How to make <a href="bitcoin.html" target="_blank">Bitcoin<a> scalable and private<br>
How to make <a href="lightning.html" target="_blank">lightning<a> usable by normies
---
# Scaling, privacy, and recursive snarks # Scaling, privacy, and recursive snarks

View File

@ -71,6 +71,11 @@ $if(sidebar)$
$endif$ $endif$
$table-of-contents$ $table-of-contents$
</nav> </nav>
$if(misc_links)$
<div class="misc_links">
$misc_links$
</div>
$endif$
</div> </div>
<div style="margin-left:39%;"> <div style="margin-left:39%;">
$endif$ $endif$

View File

@ -95,21 +95,12 @@ code {font-family: "DejaVu Sans Mono", "Lucida Console", "sans-serif";}
/*box-shadow: 2px 2px 5px 1px #000; Add shadow for raised effect */ /*box-shadow: 2px 2px 5px 1px #000; Add shadow for raised effect */
box-shadow: inset 0px 0px 12px 8px #888; box-shadow: inset 0px 0px 12px 8px #888;
} }
.misc_links {
/* Styling for the inactive buttons inside the button bar */ background-color: #ffffaf;
.button-bar button {
background-color: #2C9F30;
color: white;
padding: 5px 5px;
border: none;
margin-top: 4px;
margin-bottom: 6px;
box-shadow: 0 0 0 1px #000;
transform: translateY(2px);
} }
/* Styling for the links inside the button bar */ /* Styling for the links inside the button bar */
.button-bar a { .button-group a {
display: inline-block; display: inline-block;
text-decoration: none; text-decoration: none;
background-color: #2C9F30; background-color: #2C9F30;
@ -122,11 +113,12 @@ code {font-family: "DejaVu Sans Mono", "Lucida Console", "sans-serif";}
} }
/* Style for the "pressed" effect */ /* Style for the "pressed" effect */
.button-bar a:active { .button-group a:active {
box-shadow: 0 0 0 1px #000; box-shadow: 0 0 0 1px #000;
transform: translateY(2px); transform: translateY(2px);
} }
.myabstract{margin-left: 8%; margin-right: 12%;} .myabstract{margin-left: 8%; margin-right: 12%;}
span.bigbold{ span.bigbold{
font-weight: bold; font-weight: bold;
font-size: 120%; font-size: 120%;