nooz/templates/about.html

34 lines
1.2 KiB
HTML

{% extends "layout.html" %}
{% block body %}
<script type="text/javascript">
//Change active button in navbar
$("document").ready( function(){
$("li").removeClass("active");
$("#about").addClass("active");
});
</script>
<div class="container ">
<h1>About</h1>
<p>
This application is a reader of notes. You can easily browse any notes which are uploaded and indexed.
</p>
<p>
Later on easy download, uploading, searching, tagging and commenting will be implemented.
</p>
<h1>User guide</h1>
<p>
Select a subject from navigation bar menu. Then you will be able to see, which notes are uploaded.There is link, view and download buttons click on anything you are interested in.
</p>
<h1>Why? What for? Motivation</h1>
<p>
I like digital notes. But I encountered some problems, it wasn't very comfortable. I wanted to improve it. I wanted to share, to have easy access and automated updates and maintainence. So I made nooz. I am still working on it.
</p>
<h1>How was it made?</h1>
<p>
Whole app is written in python. I used flask, amazing, fast, simple python web framework as backend. To make it look somehow I used twitter bootstrap. As database I use sqlite3.
</p>
</div>
{% endblock %}