116 lines
6.6 KiB
HTML
116 lines
6.6 KiB
HTML
<!DOCTYPE html>
|
|
<!-- This file is part of ToDo List.
|
|
|
|
ToDo List is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
ToDo List is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with ToDo List. If not, see http://www.gnu.org/licenses/.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ToDo List</title>
|
|
<meta name="description" content="ToDo List">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<link rel="stylesheet" type="text/css" href="css/icons.min.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/af.ui.css" />
|
|
<link rel="stylesheet" href="css/app.css">
|
|
<script type="text/javascript" src="js/libs/jquery.js"></script>
|
|
<script type="text/javascript" src="js/libs/fastclick.js"></script>
|
|
<script type="text/javascript" src="js/libs/appframework.ui.min.js"></script>
|
|
<script type="text/javascript" src="js/init.js"></script>
|
|
<script type="text/javascript" src="js/libs/Dexie.js"></script>
|
|
<script type="text/javascript" src="js/app.js" defer></script>
|
|
|
|
<!--
|
|
The following two lines are for loading the localisations library
|
|
and the localisation data-so people can use the app in their
|
|
own language (as long as you provide translations).
|
|
-->
|
|
<link rel="prefetch" type="application/l10n" href="data/locales.ini" />
|
|
<script type="text/javascript" src="js/libs/l10n.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div id="afui" class="firefox">
|
|
<div class="view" id="mainview">
|
|
<header>
|
|
<h1 data-l10n-id="app_title">ToDo List</h1>
|
|
</header>
|
|
<div class="pages">
|
|
<div id="main" class="panel" selected="true">
|
|
<ul id="list_of_lists" class="list">
|
|
<li id="add_list_last_elem"><a id="add_list" data-l10n-id="add_list"><span class="icon add"></span> Add List</a></li>
|
|
</ul>
|
|
</div>
|
|
<div id="new_list" class="panel" selected="false">
|
|
<div class="formGroupHead" data-l10n-id="create_list">Create list</div>
|
|
<form>
|
|
<label for="new_list_name_input" data-l10n-id="new_list_name">Name:</label>
|
|
<input id="new_list_name_input" type="text" />
|
|
<a id="add_new_list_button" class="button icon add" data-l10n-id="add_new_list">Add new list</a>
|
|
</form>
|
|
</div>
|
|
<div data-footer="none" id="list_panel" class="panel" selected="false">
|
|
<h2 id="list_title"></h2>
|
|
<ul id="list_display" class="list">
|
|
<input id="new_elem_text" type="text" />
|
|
<a id="add_new_item" class="button icon add" data-l10n-id="add_new_item">Add new item</a>
|
|
<hr />
|
|
<a id="delete_list" class="button icon remove red" data-l10n-id="delete_list">Delete list</a>
|
|
</ul>
|
|
</div>
|
|
<div id="settings" class="panel" selected="false">
|
|
<h2 data-l10n-id="data_settings">Data settings</h2>
|
|
<hr />
|
|
<a id="reset_app" class="button red" data-l10n-id="reset_app">Reset app</a>
|
|
<p data-l10n-id="reset_warning">Warning: It will remove all data.</p>
|
|
</div>
|
|
<div id="about" class="panel" selected="false">
|
|
<h2 style="text-align:center;" data-l10n-id="app_title">ToDo List</h2>
|
|
<h4 style="text-align:center;" data-l10n-id="about_menu">About</h4>
|
|
<ul class="list inset">
|
|
<li>
|
|
<div style="width: 30%; margin: 0 auto;">
|
|
<img src="img/icons/icon.svg" style="width: 100%; margin: auto;"/>
|
|
</div>
|
|
<a href="https://github.com/resetreboot/todolist" style="margin: 0 auto;" data-ignore="true" target="_blank" data-l10n-id="visit_repo">Visit the source code</a>
|
|
<p data-l10n-id="about_text_1">
|
|
ToDoList is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.</p>
|
|
<p data-l10n-id="about_text_2">
|
|
ToDoList is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
</p>
|
|
<p data-l10n-id="about_text_3">
|
|
You should have received a copy of the GNU General Public License
|
|
along with ToDoList. If not, see <http://www.gnu.org/licenses/>.
|
|
</p>
|
|
<p data-l10n-id="about_text_4">
|
|
Originally started and written by José Carlos Cuevas <reset (dot) reboot (at) gmail (dot) com>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<footer>
|
|
<a href="#main" class="icon stack" data-l10n-id="home_list_menu">Lists</a>
|
|
<a href="#settings" class="icon settings" data-l10n-id="settings_menu">Settings</a>
|
|
<a href="#about" class="icon info" data-l10n-id="about_menu">Lists</a>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|