23 lines
552 B
HTML
23 lines
552 B
HTML
|
<!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">
|
||
|
<section id="papers">
|
||
|
<div class="container">
|
||
|
<div class="row" id="paper-list">
|
||
|
<div class="col-lg-12 text-center">
|
||
|
<h2 class="section-heading text-uppercase">Пустая страница</h2>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|