mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-24 23:02:06 +08:00
6fd591e4b5
* Update README.md
* add error troubleshooting and delScreenRecords btn
* Revert "Update README.md"
This reverts commit 5d22fe815f.
* complete coment at paths
* add button to delete screen record
* remove button to delete screen record
* index cleanup
* rename
* simpler
* same module
* no need auth on home
* ide
* name
* smaller text
* spacing
* Update README.md
* Update CHANGELOGS.md
* '\n on changelogs.md
---------
Co-authored-by: Jason Wen <haibin.wen3@gmail.com>
42 lines
2.1 KiB
HTML
42 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="initial-scale=1, width=device-width">
|
|
<link href="/static/favicon.ico" rel="icon">
|
|
<!-- http://getbootstrap.com/docs/5.3/ -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
|
|
<title>sunnypilot: {% block title %}{% endblock %}</title>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-fixed-top navbar-expand-sm navbar-dark bg-dark">
|
|
<div class="container">
|
|
<a href="/" class="navbar-brand mb-0 h1">
|
|
<img class="d-inline-block align-top mr-2" src="/static/favicon.ico" width="30" height="30" /> sunnypilot </a>
|
|
<button type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" class="navbar-toggler" aria-controls="navbarNav" aria-expanded="false" arial-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse ml-auto" id="navbarNav">
|
|
<ul class="navbar-nav">
|
|
<li class="nav-item active">
|
|
<a href="/footage" class="nav-link">        Dashcam Routes</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a href="/screenrecords" class="nav-link">        Screen Recordings</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a href="/error_logs" class="nav-link">        Error Logs</a>
|
|
</li>
|
|
<li class="nav-item active">
|
|
<a href="/about" class="nav-link">        About</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<main class="container-fluid p-7 text-center"> {% block main %}{% endblock %} </main>
|
|
{% block unformated %}{% endblock %}
|
|
</body>
|
|
</html>
|