mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
24 lines
711 B
HTML
24 lines
711 B
HTML
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>{{title}}</title>
|
||
|
|
||
|
<link
|
||
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
<link
|
||
|
href="https://unpkg.com/bootstrap-table@1.22.1/dist/bootstrap-table.min.css"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="container-fluid">{{table}}</div>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
|
||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
||
|
<script src="https://unpkg.com/bootstrap-table@1.22.1/dist/bootstrap-table.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|