This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/global/header.tpl

67 lines
3.5 KiB
Smarty
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<!-- META -->
2015-03-29 16:25:18 +00:00
<meta charset="{{ sakura.charset }}" />
2015-03-08 05:03:39 +00:00
<title>{{ page.title }}</title>
<meta name="description" content="Any community that gets its laughs by pretending to be idiots will eventually be flooded by actual idiots who mistakenly believe that they're in good company. Welcome to Flashii." />
<meta name="keywords" content="Flashii, Media, Flashwave, Murasaki, Misaka, Circle, Zeniea, MalwareUp, Cybernetics, Saibateku, Community" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<!-- CSS -->
2015-03-08 05:01:03 +00:00
<link rel="stylesheet" type="text/css" href="//{{ sakura.urls.content }}/global.css" />
<link rel="stylesheet" type="text/css" href="//{{ sakura.urls.content }}/css/yuuno/yuuno.css" />
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" />
<!-- JS -->
2015-03-29 17:33:06 +00:00
<script type="text/javascript" src="//{{ sakura.urls.content }}/js/yuuno.js"></script>
<script type="text/javascript">
2015-03-29 18:27:46 +00:00
{% if user.loggedin != true %}
2015-03-29 18:39:22 +00:00
// Setting the shit so clicking the login link doesn't redirect to /login
function initLoginForm() {
2015-03-29 17:33:06 +00:00
2015-03-29 18:39:22 +00:00
var headerLoginLink = document.getElementById('headerLoginLink');
headerLoginLink.setAtrribute('href', 'javascript:;');
headerLoginLink.setAtrribute('onclick', 'toggleLoginForm();');
}
// Toggling the dynamic login form
2015-03-29 17:33:06 +00:00
function toggleLoginForm() {
2015-03-29 18:39:22 +00:00
2015-03-29 17:33:06 +00:00
var headerLoginForm = document.getElementById('headerLoginForm');
headerLoginForm.className = (headerLoginForm.className == 'hidden' ? '' : 'hidden');
2015-03-29 18:39:22 +00:00
2015-03-29 17:33:06 +00:00
}
{% endif %}
</script>
</head>
<body>
<div id="container">
<span id="top"></span>
<div class="header" id="header">
<a class="logo" href="/"></a>
<div class="menu">
<div class="menu-nav" id="navMenuSite">
<!-- Navigation menu, displayed on left side of the bar. -->
2015-03-08 05:01:03 +00:00
<a class="menu-item" href="http://{{ sakura.urls.main }}/" title="Return to the front page of Flashii">Home</a>
<a class="menu-item" href="http://{{ sakura.urls.main }}/news" title="Here you can read updates on Flashii">News</a>
</div>
<div class="menu-ucp" id="navMenuUser">
2015-03-29 18:35:28 +00:00
<!-- User menu, displayed on right side of the bar. -->
2015-03-29 18:39:22 +00:00
<a class="menu-item" id="headerLoginLink" onload="initLoginForm();" href="http://{{ sakura.urls.main }}/login" title="Login to Flashii">Login</a>
2015-03-08 05:01:03 +00:00
<a class="menu-item" href="http://{{ sakura.urls.main }}/register" title="Create an account">Register</a>
</div>
<div class="menu-mob">
<a class="menu-item" id="mobileNavToggle" href="javascript:;" onclick="mobileMenu(true);">Open Menu</a>
</div>
<div class="clear"></div>
</div>
</div>
2015-03-29 17:33:06 +00:00
<div id="contentwrapper">
2015-03-29 18:27:46 +00:00
{% if user.loggedin != true %}
2015-03-29 17:33:06 +00:00
<div class="hidden" id="headerLoginForm">
login form
</div>
2015-03-29 18:39:22 +00:00
{% endif %}{{ sakura.currentpage }}