ng-tracker/src/main/resources/templates/papers/dashboard.html

45 lines
1.7 KiB
HTML
Raw Normal View History

2018-09-27 12:11:25 +04:00
<!DOCTYPE html>
<html lang="en"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorator="default">
<head>
</head>
<body>
<div class="container" layout:fragment="content">
<!-- Services -->
<section id="services">
<div class="container">
2018-11-14 17:04:40 +04:00
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Статьи</h2>
<div class="row justify-content-center">
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3">
<a href="./papers" class="btn btn-light toolbar-button"><i class="fa fa-list-alt"></i>
Список</a>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3">
2018-11-26 23:07:14 +04:00
<a href="./dashboard?id=0" class="btn btn-light toolbar-button"><i class="fa fa-newspaper-o"
2018-11-14 17:04:40 +04:00
aria-hidden="true"></i> Панель управления</a>
</div>
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-3">
<a href="./paper" class="btn btn-light toolbar-button"><i class="fa fa-plus-circle" aria-hidden="true"></i>
Добавить статью</a>
</div>
2018-09-27 12:11:25 +04:00
</div>
</div>
2018-11-14 15:15:23 +04:00
<div class="row justify-content-center" id="dashboard">
2018-09-27 12:11:25 +04:00
</div>
</div>
</section>
2018-11-14 15:15:23 +04:00
<script src="/js/papers.js"></script>
<script>
$(document).ready(function () {
showPaperDashboard("#dashboard");
});
</script>
2018-09-27 12:11:25 +04:00
</div>
</body>
</html>