yunorunner/templates/base.html
Alexandre Aubin 9fc2bf150c Fikssizes
2021-03-01 23:55:30 +01:00

25 lines
1.4 KiB
HTML

<!doctype html>
<html>
<head>
<title><% block title %>YunoRunner for CI<% endblock %></title>
<meta charset="utf-8">
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<{ relative_path_to_root }>static/css/bulma-0-7-1.min.css"
integrity="sha384-cX6t2fHVBGJY7XVcJYPJJJS7nHG0AcC45H//gbb9MZkBxLD4rQ3SQkTYZwxOclNs">
<script defer src="<{ relative_path_to_root }>static/js/fontawesome-all-5-1-0.js"
integrity="sha384-3LK/3kTpDE/Pkp8gTNp2gR/2gOiwQ6QaO7Td0zV76UFJVhqLl4Vl3KL1We6q6wR9"></script>
<script src="<{ relative_path_to_root }>static/js/vue-2-5-17.min.js"
integrity="sha384-9MzmvphdUvLZJKasjD7VqYE4SqffhZDOwDTMyokP2tx+fjBo59ljvrlgUAaaME44"></script>
<script src="<{ relative_path_to_root }>static/js/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="></script>
<script src="<{ relative_path_to_root }>static/js/app.js"></script>
<script src="<{ relative_path_to_root }>static/js/reconnecting-websocket.min.js"></script>
<link href="<{ relative_path_to_root }>static/css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<% include "menu.html" %>
<% block content %><% endblock %>
<% block javascript %><% endblock %>
</body>
</html>