99 lines
4.4 KiB
HTML
99 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="Tutor Dash">
|
|
|
|
<title>Tutor Dash</title>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='/img/favicon.png') }}">
|
|
<!-- CSS -->
|
|
<!-- <link rel="stylesheet" href="css/normalize.css"> -->
|
|
<!-- <link rel="stylesheet" href="css/styles.css"> -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Ubuntu:regular,bold&subset=Latin">
|
|
<link href="{{ url_for('static', filename='/css/dash.css') }}" rel="stylesheet">
|
|
<!-- TODO self-host -->
|
|
<script src="https://unpkg.com/htmx.org@2.0.3/dist/htmx.min.js"></script>
|
|
<!-- SSE extension https://htmx.org/extensions/sse/ TODO self host and move to dedicated page-->
|
|
<script src="https://unpkg.com/htmx-ext-sse@2.2.2/sse.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="main-container">
|
|
<div class="sidebar">
|
|
<div class="section">
|
|
<div class="header">
|
|
<div class="image">
|
|
<img src="{{ url_for('static', filename='/img/Edly Red Icon.svg') }}"/>
|
|
</div>
|
|
<div class="text">
|
|
Edly
|
|
</div>
|
|
</div>
|
|
<div class="content">
|
|
<div>
|
|
<a href="{{ url_for('plugin_store') }}">
|
|
<li class="sidebar-tab">
|
|
<img class="sidebar-tab-logo" src="{{ url_for('static', filename='/img/shopping-bag.svg') }}" height="20rem"/>
|
|
<span>Plugin Marketplace</span>
|
|
</li>
|
|
</a>
|
|
<p></p>
|
|
<a href="{{ url_for('installed_plugins') }}">
|
|
<li class="sidebar-tab">
|
|
<img class="sidebar-tab-logo" src="{{ url_for('static', filename='/img/stack.svg') }}" height="25rem"/>
|
|
<span>My Plugins</span>
|
|
</li>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
<div>
|
|
<div class="username">Bismah Azhar</div>
|
|
<div class="email">bismah.azhar@arbisoft.com</div>
|
|
</div>
|
|
<div>
|
|
<img src="{{ url_for('static', filename='/img/Button.svg') }}" height="40rem"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="workspace">
|
|
<div class="header">
|
|
{% block workspace_header %}{% endblock %}
|
|
</div>
|
|
<div class="content">
|
|
{% block workspace_content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
{% block model_icon %}{% endblock %}
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<h5 class="modal-title" id="exampleModalLabel">{% block modal_title%}{% endblock %}</h5>
|
|
<p class="modal-description">{% block modal_description %}{% endblock %}</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
{% block modal_footer %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
|
<script src="{{ url_for('static', filename='/js/dash.js') }}"></script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
|
|
</html>
|