-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
74 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<!-- _includes/toc.html --> | ||
<nav class="toc"> | ||
<h2>Table of Contents</h2> | ||
<ul> | ||
<li><a href="{{ site.baseurl }}/">Home</a></li> | ||
<li><a href="{{ site.baseurl }}/program-overview">Program Overview</a></li> | ||
<li><a href="{{ site.baseurl }}/terminology">Terminology</a></li> | ||
<li><a href="{{ site.baseurl }}/parameters">Parameters</a></li> | ||
<li><a href="{{ site.baseurl }}/ui">StakeNet UI</a> (work in progress)</li> | ||
<li> | ||
<strong>Developers</strong> | ||
<ul> | ||
<li><a href="{{ site.baseurl }}/developers/cli">Command-line interface</a></li> | ||
<li><a href="{{ site.baseurl }}/developers/api">Events API</a></li> | ||
<li><a href="{{ site.baseurl }}/developers/keeper-bot-quick-start">Running a Keeper</a></li> | ||
</ul> | ||
</li> | ||
<li> | ||
<strong>Advanced Concepts</strong> | ||
<ul> | ||
<li><a href="{{ site.baseurl }}/advanced/spl-stake-pool-internals">SPL Stake Pool Internals</a></li> | ||
<li><a href="{{ site.baseurl }}/advanced/managing-validator-states">Validator States</a></li> | ||
</ul> | ||
</li> | ||
<li><a href="{{ site.baseurl }}/governance">Governance</a></li> | ||
<li><a href="{{ site.baseurl }}/faq">Validator FAQ</a> (work in progress)</li> | ||
</ul> | ||
</nav> |
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
body { | ||
display: flex; | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
width: 100%; | ||
} | ||
|
||
.sidebar { | ||
width: 250px; | ||
padding: 20px; | ||
background-color: #f0f0f0; | ||
height: 100vh; | ||
overflow-y: auto; | ||
position: fixed; | ||
} | ||
|
||
.content { | ||
flex-grow: 1; | ||
padding: 20px; | ||
margin-left: 250px; | ||
} | ||
|
||
.toc ul { | ||
list-style-type: none; | ||
padding-left: 20px; | ||
} | ||
|
||
.toc a { | ||
text-decoration: none; | ||
color: #333; | ||
} | ||
|
||
.toc a:hover { | ||
text-decoration: underline; | ||
} |
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