adds raw html with stubbed content
This commit is contained in:
parent
2df0f16463
commit
d90424c55a
|
@ -0,0 +1,71 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="shrink-to-fit=no,width=device-width,height=device-height,initial-scale=1,user-scalable=1">
|
||||
<meta name="description" content="1024 bytes for everyone. What will you do with your 1k?">
|
||||
<title>The 1024 Club - 1k for Everyone</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/main.css" />
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>The 1024 Club</h1>
|
||||
<h2>1k for everybody</h2>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/">Home</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<section id="overview">
|
||||
<h2>Overview</h2>
|
||||
<p>Everyone deserves a little data to play with. Here at The 1024 Club
|
||||
we give you a full 1024 bytes to play with as your very own. That's
|
||||
1k, or about 1/11,796<sup>th</sup> the size of a floppy disk from
|
||||
1986! What sort of magic can you dream up with yours?</p>
|
||||
<h3>Features List</h3>
|
||||
<ul>
|
||||
<li>no user accounts for registration</li>
|
||||
<li>api endpoint allocates a block of space for you based on the hash of your pubkey</li>
|
||||
<li>your private key signs data transactions to the api for CRUD of your 1k block</li>
|
||||
<li>ability to set mime-type of your block</li>
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
<section id="getting-started">
|
||||
<h2>Geting Started</h2>
|
||||
<p>This section will outline how you can use the API endpoint to
|
||||
initiate a request for a hashed space. Doing so will initialize your 1k
|
||||
block. Future interactions with the API will use this hash & your
|
||||
private key signing data to verify that you have access to manipulate
|
||||
your block.</p>
|
||||
</section>
|
||||
|
||||
<section id="specification">
|
||||
<h2>Technical Specifications</h2>
|
||||
<p>This section will outline the technical stack and various things
|
||||
about supported key and encryption types.</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<aside>
|
||||
<h2>Did you know?</h2>
|
||||
<p><a href="https://hackaday.io">Hackaday.io</a> ran a contest in 2016
|
||||
for the best program in under 1k. Why not go
|
||||
<a href="https://hackaday.io/contest/18215-the-1kb-challenge">see the results of The 1kB Challenge</a>
|
||||
for yourself.</p>
|
||||
</aside>
|
||||
|
||||
<footer>
|
||||
<p class="license-title">The MIT License (MIT)</p>
|
||||
<p class="license-copyright">©2020 The 1024 Club</p>
|
||||
<p>Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:</p>
|
||||
<p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
|
||||
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue