75 lines
2.5 KiB
Twig
75 lines
2.5 KiB
Twig
<!-- Sidebar -->
|
|
<div id="sidebar">
|
|
<div class="inner">
|
|
|
|
<!-- Search -->
|
|
{% if app.user %}
|
|
<section id="search" class="alt">
|
|
<form method="post" action="#">
|
|
<input type="text" name="query" id="query" placeholder="Search" />
|
|
</form>
|
|
</section>
|
|
{% endif %}
|
|
|
|
<!-- Menu -->
|
|
<nav id="menu">
|
|
<header class="major">
|
|
<h2>Menu</h2>
|
|
{% if app.user %}
|
|
<h3>Welcome {{ app.user.name }}</h3>
|
|
<ul>
|
|
<li><a href='/index.php/logout'>Logout</a>
|
|
</ul>
|
|
{% endif %}
|
|
</header>
|
|
<ul>
|
|
{% if app.user %}
|
|
<li><a href='/index.php/home'>Home</a></li>
|
|
<li><a href="#" onclick='newNote()'>New Note</a></li>
|
|
<li><a href='#' onclick='openNote()'>Open Note</a></li>
|
|
<li><a href="#" onclick="saveNote()">Save Note</a></li>
|
|
<li><a href='#' onclick='discardNote()'>Delete Note</a></li>
|
|
{% if isAdmin %}
|
|
<li><a href='/index.php/reference-editor'>Reference Editor</a></li>
|
|
{% endif %}
|
|
<li><a href='#' onclick="openRef()">Open Reference</a></li>
|
|
<li><a href='/index.php/template-editor'>Template Editor</a></li>
|
|
{% else %}
|
|
<li><a href="/index.php/">Home</a></li>
|
|
<li><a href='/index.php/register'>Register</a></li>
|
|
<li><a href='/index.php/login'>Login</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
|
|
{% if app.user %}
|
|
<!-- Section -->
|
|
<section>
|
|
<header class="major">
|
|
<h2>Recent Notes</h2>
|
|
</header>
|
|
<div class="mini-posts">
|
|
{% for n in app.user.notes %}
|
|
<article>
|
|
<a href="#">{{ n.title }}</a>
|
|
<p>{{ n.passage }}</p>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
</section>
|
|
{% endif %}
|
|
|
|
<!-- Section -->
|
|
<section>
|
|
<header class="major">
|
|
<h2>Get in touch</h2>
|
|
</header>
|
|
<ul class="contact">
|
|
<li class="icon solid fa-envelope">
|
|
<a href="mailto:ryan@rkprather.com">ryan@rkprather.com</a>
|
|
</li>
|
|
</ul>
|
|
</section>
|
|
</div>
|
|
</div>
|