mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-07-18 03:46:12 +02:00
This isn't perfect, but it is a step in the right direction. This fixes the prev button not working at all and the next button having some undesirable behavior. This seems to work for the most part, but I noticed that if I leave this open and go to a different tab in my browser, there's some strange behavior when I come back to the landing page: there are multiple outputs playing at once. This is similar to the current behavior, where clicking the next button multiple times does the same thing.
93 lines
5 KiB
HTML
Executable file
93 lines
5 KiB
HTML
Executable file
<!DOCTYPE html>
|
|
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
|
|
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
|
|
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>jrnl- The Command Line Journal</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300,700' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="{{ pathto('_static/css/jrnl.css', 1) }}">
|
|
<link rel="apple-touch-icon-precomposed" href="{{ pathto('_static/img/favicon-152.png', 1) }}">
|
|
<link rel="shortcut icon" href="{{ pathto('_static/img/favicon.ico', 1) }}">
|
|
</head>
|
|
<body id="landing" class="landing">
|
|
<div id="upper">
|
|
<a id="twitter" href="https://twitter.com/intent/tweet?text=Write+your+memoirs+on+the+command+line.+Like+a+boss.+%23jrnl&url=http%3A%2F%2Fmaebert.github.io%2Fjrnl&via=maebert">Tell your friends</a>
|
|
<div id="title">
|
|
<img id="logo" src="{{ pathto('_static/img/logo.png', 1) }}" width="90px" height="98px" title="jrnl"/>
|
|
<h1>Collect your thoughts and notes <br />without leaving the command line</h1>
|
|
</div>
|
|
<div id="prompt">
|
|
<div class="pleft" onclick="reset(); prev(); return false;"><i class="icon left"></i></div>
|
|
<div class="terminal">$ jrnl <span id="args"></span><span id="input">today: Started writing my memoirs. On the command line. Like a boss.</span><div id="output"></div></div>
|
|
<div class="pright" onclick="reset(); next(); return false;"><i class="icon right"></i></div>
|
|
</div>
|
|
</div>
|
|
<div id="nav">
|
|
<a href="{{ pathto('overview') }}" title="Documentation">Documentation</a>
|
|
<a href="http://github.com/maebert/jrnl" title="View on Github">Fork me on GitHub</a>
|
|
<a id="twitter-nav" href="https://twitter.com/intent/tweet?text=Write+your+memoirs+on+the+command+line.+Like+a+boss.+%23jrnl&url=http%3A%2F%2Fmaebert.github.io%2Fjrnl&via=maebert">Tell your friends on twitter</a>
|
|
<a href="{{ pathto('installation') }}" title="Quick Start" class="cta">Download ▶</a>
|
|
</div>
|
|
<div id="lower">
|
|
<div class="row3">
|
|
<div class="col">
|
|
<i class="icon nli"></i>
|
|
<h3>Human friendly.</h3>
|
|
<p>jrnl has a natural-language interface so you don't have to remember cryptic shortcuts when you're writing down your thoughts.</p>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon future"></i>
|
|
<h3>Future-proof.</h3>
|
|
<p>your journals are stored in plain-text files that will still be readable in 50 years when all your fancy iPad apps will have gone the way of the Dodo.</p>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon secure"></i>
|
|
<h3>Secure.</h3>
|
|
<p>Encrypt your journals with the military-grade AES encryption. Even the NSA won't be able to read your dirty secrets.</p>
|
|
</div>
|
|
</div>
|
|
<div class="row4">
|
|
<div class="col">
|
|
<i class="icon sync"></i>
|
|
<h3>Accessible anywhere.</h3>
|
|
<p>Sync your journals with Dropbox and capture your thoughts where ever you are</p>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon dayone"></i>
|
|
<h3>DayOne compatible.</h3>
|
|
<p>Read, write and search your DayOne journal from the command line.</p>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon github"></i>
|
|
<h3>Free & Open Source.</h3>
|
|
<p>jrnl is made by a bunch of really friendly and remarkably attractive people. Maybe even <a href="https://www.github.com/maebert/jrnl" title="Fork jrnl on GitHub">you</a>?</p>
|
|
</div>
|
|
<div class="col">
|
|
<i class="icon folders"></i>
|
|
<h3>For work and play.</h3>
|
|
<p>Effortlessly access several journals for all parts of your life.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
{{ copyright }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="{{ pathto('_static/js/landing.js', 1) }}"></script>
|
|
<script>
|
|
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
|
|
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
g.src='//www.google-analytics.com/ga.js';
|
|
s.parentNode.insertBefore(g,s)}(document,'script'));
|
|
</script>
|
|
</body>
|
|
</html>
|