- Improvements to EntitlementsDomain & Services - Prechecks in Document domain - Add audit information to LicenseUsage
34 lines
2.0 KiB
HTML
34 lines
2.0 KiB
HTML
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="apple-touch-icon" sizes="76x76" href="{{url_for('static', filename='assets/img/apple-icon.png')}}">
|
|
<link rel="icon" type="image/png" href="{{url_for('static', filename='assets/img/favicon.png')}}">
|
|
<title>
|
|
{% block title %}EveAI Client{% endblock %}
|
|
</title>
|
|
<!-- Fonts and icons -->
|
|
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900|Roboto+Slab:400,700" />
|
|
<!-- Nucleo Icons -->
|
|
<link href="{{url_for('static', filename='assets/css/nucleo-icons.css" rel="stylesheet')}}" />
|
|
<link href="{{url_for('static', filename='assets/css/nucleo-svg.css" rel="stylesheet')}}" />
|
|
<!-- Font Awesome Icons -->
|
|
<script src="https://kit.fontawesome.com/42d5adcbca.js" crossorigin="anonymous"></script>
|
|
<!-- Material Icons -->
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
|
<!-- CSS Files -->
|
|
<link id="pagestyle" href="{{url_for('static', filename='assets/css/material-kit-pro.css')}}" rel="stylesheet" />
|
|
<link id="pagestyle" href="{{url_for('static', filename='assets/css/eveai.css')}}" rel="stylesheet" />
|
|
<!-- HTMX Scripts -->
|
|
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
|
|
<script>
|
|
// Initialize a basic logViewer placeholder that will collect messages until the real one is ready
|
|
window.logViewerQueue = [];
|
|
window.logViewer = {
|
|
info: function(msg) { window.logViewerQueue.push({type: 'info', message: msg}); },
|
|
error: function(msg) { window.logViewerQueue.push({type: 'error', message: msg}); },
|
|
warning: function(msg) { window.logViewerQueue.push({type: 'warning', message: msg}); },
|
|
success: function(msg) { window.logViewerQueue.push({type: 'success', message: msg}); }
|
|
};
|
|
</script>
|
|
</head> |