Browse Source

landing page refreshed

master
Christian Müller 10 years ago
parent
commit
fefeab4efb
  1. 0
      API.deprecated.md
  2. 8
      README.md
  3. 9
      resources/public/index.html
  4. 7
      resources/public/style.css

0
API.md → API.deprecated.md

8
README.md

@ -2,14 +2,8 @@ @@ -2,14 +2,8 @@
[NoteHub](https://www.notehub.org) is a free and hassle-free pastebin for one-off markdown publishing.
NoteHub _was_ an one-app-one-language [experiment](https://www.notehub.org/2012/6/16/how-notehub-is-built) and was initially implemented entirely in [Clojure](http://clojure.org) (ClojureScript).
NoteHub's persistence layer is based on the key-value store [redis](http://redis.io).
Currently, NoteHub is hosted for free on [Heroku](http://heroku.com).
NoteHub supports an [API](https://github.com/chmllr/NoteHub/blob/master/API.md) and can be integrated as a publishing platform.
## How to Use?
First, create [a new page](https://www.notehub.org/new) using the [Markdown syntax](http://daringfireball.net/projects/markdown/).
First, create [a new page](https://notehub.org/new) using the [Markdown syntax](http://daringfireball.net/projects/markdown/).
When the note is published, you'll see a subtle panel at the bottom of the screen.
From this panel you can go to a rudimentary statistics of the article, or you can export the original markdown, or copy the short url of the note.
Besides this, you also can invert the color scheme by appending to the note url:

9
resources/public/index.html

@ -11,7 +11,7 @@ @@ -11,7 +11,7 @@
<body>
<div id="hero">
<h1>NoteHub</h1>
<h2>Free and Hassle-free Pastebin for Markdown Pages.</h2>
<h2>Free and Hassle-free Pastebin for Markdown Notes.</h2>
<br>
<a class="landing-button" href="/new" style="color: white">New Page</a>
</div>
@ -28,15 +28,16 @@ @@ -28,15 +28,16 @@
<li><strong>Statistics</strong>: page view counter, publishing and editing date.</li>
<li><strong>Expiration</strong>: all notes with less than 30 views after the first 30 days will expire.</li>
<li><strong>Export</strong>: the original markdown content can be displayed in plain text format.</li>
<li><strong>API</strong>: Integrate the publishing functionality into your editor using the official <a href="/api">NoteHub API</a>.</li>
</ul>
<h2>Changelog</h2>
<ul>
<li><strong>2015-09</strong>: NoteHub rewritten in Node.js.
<li><strong>2015-09</strong>: NoteHub API deprecated due to low adoption by the user base.
<li><strong>2014-09</strong>: text size setting added (<a href="/2014/3/31/demo-note?text-font=monospace&header-font=Courier&text-size=0.7&header-size=1.1">example</a>)</li>
<li><strong>2014-07</strong>: deprecated all API versions less than 1.4 &amp; performance improvements.</li>
<li><strong>2014-03</strong>: note expiration implemented.</li>
<li><strong>2014-02</strong>: a simple JS-client for API testing <a href="/api-test.html">added</a>.</li>
<li><strong>2014-01</strong>: <a href="/api">NoteHub API</a>, mobile friendly styling and more.</li>
<li><strong>2014-02</strong>: a simple JS-client for API testing added.</li>
<li><strong>2014-01</strong>: NoteHub API, mobile friendly styling and more.</li>
<li><strong>2013-03</strong>: new color themes.</li>
<li><strong>2012-07</strong>: password protection for note editing added.</li>
<li><strong>2012-06</strong>: NoteHub released as a result of an <a href="/2012/6/16/how-notehub-is-built">experiment</a>.</li>

7
resources/public/style.css

@ -44,17 +44,16 @@ fieldset { @@ -44,17 +44,16 @@ fieldset {
.landing-button {
padding: 10px;
border-radius: 10px;
background: #0a2;
border-radius: 3px;
background: #0a6;
font-size: 1.5em;
text-decoration: none;
box-shadow: 0 2px 5px #aaa;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'Lucida Grande', 'sans-serif';
font-weight: 300;
}
.landing-button:hover {
background: #0b2;
background: #0b7;
}
.helvetica {

Loading…
Cancel
Save