Started work on the site design
This commit is contained in:
21
views/layout/layout.twig
Normal file
21
views/layout/layout.twig
Normal file
@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>{% block title %}{% endblock %} | Salt Hub</title>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.5/css/foundation.min.css">
|
||||
<link rel="stylesheet" href="/css/duradel.css">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.4/jquery.min.js" charset="utf-8"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.7.5/js/foundation.min.js" charset="utf-8"></script>
|
||||
<script src="/js/konar.js" charset="utf-8"></script>
|
||||
</head>
|
||||
<body>
|
||||
{% include 'layout/top-bar.twig' %}
|
||||
|
||||
<div class="grid-container">
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
10
views/layout/top-bar.twig
Normal file
10
views/layout/top-bar.twig
Normal file
@ -0,0 +1,10 @@
|
||||
<nav id="top-bar" class="top-bar">
|
||||
<div class="top-bar-left">
|
||||
<ul class="menu" data-dropdown-menu>
|
||||
<li class="menu-text">Salt Hub</li>
|
||||
<li><a href="/">Dashboard</a></li>
|
||||
<li><a href="/formulas">Formulas</a></li>
|
||||
<li><a href="/organizations">Organizations</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
Reference in New Issue
Block a user