numass-framework/numass-server/src/main/resources/templates/NoteLoader.ftl

27 lines
884 B
Plaintext
Raw Normal View History

2016-04-16 22:41:21 +03:00
<!DOCTYPE html>
<html>
<head>
<title>Numass run notes</title>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="30">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
2016-04-16 22:41:21 +03:00
</head>
<body>
<div class="container">
<div class="page-header">
<h1> Numass experiment run notes:</h1>
</div>
<#list notes as note>
<p>${note};</p>
</#list>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
2016-04-16 22:41:21 +03:00
</body>
</html>