mirror of
https://github.com/Jackzmc/storage.git
synced 2025-05-09 07:03:20 +00:00
Merge server folder to root
This commit is contained in:
parent
7de75a582a
commit
f921f47529
4418 changed files with 25524 additions and 3 deletions
20
templates/layouts/default.html.hbs
Normal file
20
templates/layouts/default.html.hbs
Normal file
|
@ -0,0 +1,20 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="/static/favicon.png" />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>storage-app</title>
|
||||
<!-- TODO: use static -->
|
||||
<link href="/static/css/main.css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="/static/css/bulma.min.css">
|
||||
<link href="/static/icons/css/fontawesome.css" rel="stylesheet" />
|
||||
<link href="/static/icons/css/solid.css" rel="stylesheet" />
|
||||
<link href="/static/icons/css/regular.css" rel="stylesheet" />
|
||||
<link href="/static/icons/css/brands.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body class="{{body-class}}">
|
||||
{{> @partial-block }}
|
||||
</body>
|
||||
</html>
|
11
templates/layouts/main.html.hbs
Normal file
11
templates/layouts/main.html.hbs
Normal file
|
@ -0,0 +1,11 @@
|
|||
{{#> layouts/default }}
|
||||
{{> partials/nav }}
|
||||
<div class="mx-3 columns" style="height: 100%">
|
||||
<div class="column pl-0 sidebar-column">
|
||||
{{> partials/sidebar }}
|
||||
</div>
|
||||
<div class="column is-10">
|
||||
{{> @partial-block }}
|
||||
</div>
|
||||
</div>
|
||||
{{/layouts/default}}
|
Loading…
Add table
Add a link
Reference in a new issue