42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
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="load">
|
||
|
<div class="container">
|
||
|
<div class="row" id="paper-list">
|
||
|
<div class="col-lg-12 text-center">
|
||
|
<h2 class="section-heading text-uppercase">Статьи</h2>
|
||
|
<div id="loader">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<script type="text/javascript" src="/js/file-loader.js"></script>
|
||
|
<script>
|
||
|
/*<![CDATA[*/
|
||
|
$(document).ready(function () {
|
||
|
new FileLoader({
|
||
|
div: "loader",
|
||
|
url: urlFileUpload,
|
||
|
maxSize: 1.5,
|
||
|
extensions: ["xls", "jpg", "pdf", "txt", "png"],
|
||
|
callback: function (response) {
|
||
|
showFeedbackMessage("Файл успешно загружен");
|
||
|
console.debug(response);
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
/*]]>*/
|
||
|
</script>
|
||
|
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|