Prime template
This commit is contained in:
parent
b0d7683e9c
commit
a16a31f46b
3
templates/prime/html/footer.html
Normal file
3
templates/prime/html/footer.html
Normal file
@ -0,0 +1,3 @@
|
||||
<footer class="footer fixed-bottom" id="footer">
|
||||
<p>${copyright}</p>
|
||||
</footer>
|
38
templates/prime/html/index.html
Normal file
38
templates/prime/html/index.html
Normal file
@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>${title}</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/templates/prime/css/style.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
|
||||
<link href="https://cdn.datatables.net/1.13.5/css/dataTables.bootstrap5.min.css" rel="stylesheet">
|
||||
</head>
|
||||
<body class="d-flex flex-column">
|
||||
${navbar}
|
||||
${sidebar}
|
||||
<div class="content flex-grow-1" id="content">
|
||||
${container}
|
||||
</div>
|
||||
${footer}
|
||||
<button class="sidebar-toggle" id="sidebarToggle">
|
||||
☰<span>Menu</span>
|
||||
</button>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script>
|
||||
document.getElementById('sidebarToggle').addEventListener('click', function() {
|
||||
var sidebar = document.getElementById('sidebar');
|
||||
var content = document.getElementById('content');
|
||||
var footer = document.getElementById('footer');
|
||||
if (window.innerWidth <= 768) {
|
||||
sidebar.classList.toggle('show');
|
||||
} else {
|
||||
sidebar.classList.toggle('minimized');
|
||||
content.classList.toggle('full-width');
|
||||
footer.classList.toggle('full-width');
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
44
templates/prime/html/navbar.html
Normal file
44
templates/prime/html/navbar.html
Normal file
@ -0,0 +1,44 @@
|
||||
<!-- Navbar -->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="#">${title}</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav ms-auto">
|
||||
% for item in menu:
|
||||
% if any(role in item['roles'] for role in user_roles):
|
||||
<li class="nav-item">
|
||||
<a class="nav-link ${'active' if item['name'] == active_page else ''}" href="${item['href']}" target="${item['target']}">
|
||||
% if item['notification'] > 0:
|
||||
${item['name']} <sup class="badge bg-danger">${item['notification']}</sup>
|
||||
% else:
|
||||
${item['name']}
|
||||
% endif
|
||||
</a>
|
||||
</li>
|
||||
% endif
|
||||
% endfor
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle d-flex align-items-center" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<img src="${profile['picture']}" alt="Profile" class="profile-image me-2">
|
||||
${profile['name']}
|
||||
</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
% for item in profile['menu']:
|
||||
% if any(role in item['roles'] for role in user_roles):
|
||||
<li>
|
||||
<a class="dropdown-item ${'active' if item['name'] == active_page else ''}" href="${item['href']}" target="${item['target']}">
|
||||
${item['name']}
|
||||
</a>
|
||||
</li>
|
||||
% endif
|
||||
% endfor
|
||||
<!-- <li><hr class="dropdown-divider"></li> -->
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
16
templates/prime/html/sidebar.html
Normal file
16
templates/prime/html/sidebar.html
Normal file
@ -0,0 +1,16 @@
|
||||
<!-- Sidebar -->
|
||||
<div class="sidebar" id="sidebar">
|
||||
<!-- <h5>Sidebar</h5> -->
|
||||
<ul class="navbar-nav flex-column">
|
||||
% for item in menu:
|
||||
% if any(role in item['roles'] for role in user_roles):
|
||||
<li class="nav-item">
|
||||
<a class="nav-link text-white ${'active' if item['name'] == active_page else ''}" href="${item['href']}" target="${item['target']}">
|
||||
<i class="${item['icon']} me-3"></i> ${item['name']}
|
||||
</a>
|
||||
</li>
|
||||
% endif
|
||||
% endfor
|
||||
<!-- Add more items to test scrolling -->
|
||||
</ul>
|
||||
</div>
|
33
templates/prime/main.py
Normal file
33
templates/prime/main.py
Normal file
@ -0,0 +1,33 @@
|
||||
# MIT License
|
||||
#
|
||||
# Copyright (c) 2024 Dita Aji Pratama
|
||||
#
|
||||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
#
|
||||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
#
|
||||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
from core import html
|
||||
|
||||
static = [
|
||||
{
|
||||
"route" : "/templates/prime/css/<filepath:re:.*\.(css|sass|css.map)>",
|
||||
"root" : "./templates/prime/static/css"
|
||||
},
|
||||
{
|
||||
"route" : "/templates/prime/img/<filepath:re:.*\.(jpg|jpeg|svg|png)>",
|
||||
"root" : "./templates/prime/static/img"
|
||||
}
|
||||
]
|
||||
|
||||
def main(dir, page):
|
||||
html_template = html.main.get_html("templates/prime/html")
|
||||
html_page = html.main.get_html(dir)
|
||||
return {
|
||||
"index" : html_template [ "index.html" ],
|
||||
"navbar" : html_template [ "navbar.html" ],
|
||||
"sidebar" : html_template [ "sidebar.html" ],
|
||||
"footer" : html_template [ "footer.html" ],
|
||||
"container" : html_page [f"{page}.html" ]
|
||||
}
|
129
templates/prime/static/css/style.css
Normal file
129
templates/prime/static/css/style.css
Normal file
@ -0,0 +1,129 @@
|
||||
body {
|
||||
min-height: 100vh;
|
||||
padding-top: 56px;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
z-index: 1030; /* Ensure the navbar is above other elements */
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
height: calc(100vh - 56px); /* 56px is the height of the navbar */
|
||||
position: fixed;
|
||||
top: 56px; /* Offset by the navbar height */
|
||||
left: 0;
|
||||
width: 250px;
|
||||
background-color: #343a40;
|
||||
color: white;
|
||||
z-index: 1020; /* Lower than navbar to stay behind it */
|
||||
transition: transform 0.3s ease-in-out;
|
||||
overflow-y: auto; /* Make sidebar scrollable */
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-track {
|
||||
background: #bbb;
|
||||
border-radius: 3px;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-thumb {
|
||||
background: #ddd;
|
||||
border-radius: 3px;
|
||||
margin: 12px 0;
|
||||
}
|
||||
|
||||
.sidebar .navbar-nav {
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
|
||||
.sidebar .navbar-nav .nav-item .active {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.sidebar .navbar-nav .nav-item :hover {
|
||||
background-color: rgba(0, 0, 0, 0.2); /* Darkens on hover */
|
||||
}
|
||||
|
||||
.sidebar .navbar-nav .nav-item .nav-link {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.sidebar.minimized {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 250px;
|
||||
padding-bottom: 20px;
|
||||
transition: margin-left 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
.content.full-width {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
background-color: #f8f9fa;
|
||||
padding-top: 5px;
|
||||
text-align: center;
|
||||
margin-left: 250px;
|
||||
transition: margin-left 0.3s ease-in-out;
|
||||
z-index: 1010;
|
||||
}
|
||||
|
||||
.footer.full-width {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.profile-image {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.sidebar-toggle {
|
||||
position: fixed;
|
||||
bottom: 20px;
|
||||
left: 20px;
|
||||
background-color: #343a40;
|
||||
color: white;
|
||||
border: 1px solid #fff;
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
z-index: 1040; /* Above the sidebar and navbar */
|
||||
padding: 5px;
|
||||
border-radius: 8px; /* Rounded corners */
|
||||
}
|
||||
|
||||
.sidebar-toggle span {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sidebar {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.sidebar.show {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.content {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.footer {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
BIN
templates/prime/static/img/no-profile-donut.png
Normal file
BIN
templates/prime/static/img/no-profile-donut.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 127 KiB |
Loading…
Reference in New Issue
Block a user