59 lines
1.9 KiB
HTML
59 lines
1.9 KiB
HTML
<!--
|
|
This file is part of Accountant.
|
|
|
|
Accountant is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Accountant 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
|
|
<!DOCTYPE html>
|
|
<html lang="fr" ng-app="accountantApp">
|
|
<head>
|
|
<!-- Title -->
|
|
<title>Accountant</title>
|
|
|
|
<base href="{{ url_for('.index') }}">
|
|
|
|
<!-- third-party.css -->
|
|
<link href="static/build/css/vendor.css" rel="stylesheet">
|
|
|
|
<!-- main css -->
|
|
<link href="static/css/main.css" rel="stylesheet">
|
|
|
|
<!-- Font Awesome -->
|
|
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
|
|
|
|
<!-- Vendor javascripts. -->
|
|
<script type="text/javascript" src="static/build/js/vendor.js"></script>
|
|
</head>
|
|
|
|
<body style="padding-bottom: 50px; padding-top: 70px">
|
|
<!-- Navbar -->
|
|
<nav class="navbar navbar-fixed-top navbar-inverse" ng-controller="AccountController">
|
|
<div class="container-fluid">
|
|
<!-- Brand -->
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/"> Accountant</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container-fluid">
|
|
<div ng-view></div>
|
|
</div>
|
|
|
|
<!-- Custom Javascript library for entries -->
|
|
<script type="text/javascript" src="static/build/js/app.js"></script>
|
|
</body>
|
|
</html>
|
|
|