mirror of
https://github.com/Ekokumppanit/ystavakylaecard.git
synced 2026-02-12 09:46:32 +00:00
Coding standard fixes. Routes: Error page override works now. Welcome controller: Return false where needed. Header-view: lnk-helper function to help highlight current page matching links. ecards-helper: lnk() and checkboxes(), needs commenting. new-view: values for javascript, Image name for dropdown. style.css: better colours, footer links not so prominent, helper classes, moved cursor: move from users without javascript. scripts.js: documentation.
This commit is contained in:
@@ -7,14 +7,14 @@ if (empty($page_title)) {
|
||||
}
|
||||
|
||||
?><!DOCTYPE html>
|
||||
<!--[if IE 8]> <html class="no-js lt-ie9" lang="fi"> <![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="fi"> <!--<![endif]-->
|
||||
<!--[if IE 8]><html class="no-js lt-ie9" lang="fi"><![endif]-->
|
||||
<!--[if gt IE 8]><!--> <html class="no-js" lang="fi"><!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="icon" href="<?php echo site_url('/favicon.ico'); ?>">
|
||||
<title><?php echo implode(" » ", $page_title); ?></title>
|
||||
<?php
|
||||
<?php
|
||||
// Assets spark
|
||||
assets_css(
|
||||
array(
|
||||
@@ -44,29 +44,30 @@ if (empty($page_title)) {
|
||||
<section class="top-bar-section">
|
||||
<ul class="left">
|
||||
<li class="divider"></li>
|
||||
<li><a class="active" href="<?php echo site_url("uusi"); ?>">Luo omasi!</a></li>
|
||||
<li><?= lnk("uusi", "Luo omasi!"); ?></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="<?php echo site_url("kaikki"); ?>">Listaa kaikki</a></li>
|
||||
<li><?= lnk("kaikki", "Listaa kaikki"); ?></li>
|
||||
<li class="divider"></li>
|
||||
<li class="has-dropdown">
|
||||
<a href="<?php echo site_url("info"); ?>">Tietoa</a>
|
||||
<?= lnk("info", "Tietoa"); ?>
|
||||
<ul class="dropdown">
|
||||
<li><a href="<?php echo site_url("info"); ?>#rekisteri">Rekisteriseloste</a></li>
|
||||
<li><a href="<?php echo site_url("info"); ?>#yhteystiedot">Yhteystiedot</a></li>
|
||||
<li><?= lnk("info#rekisteri", "Rekisteriseloste"); ?></li>
|
||||
<li><?= lnk("info#yhteystiedot", "Yhteystiedot"); ?></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<?php
|
||||
if (isset($user) and ! empty($user)) {
|
||||
|
||||
|
||||
?>
|
||||
|
||||
<ul class="left">
|
||||
<li class="has-dropdown adminmenu">
|
||||
<a href="<?php echo site_url("yllapito"); ?>">Ylläpito</a>
|
||||
<a href="<?php echo site_url("yllapito"); ?>">
|
||||
<ul class="dropdown">
|
||||
<li class="has-dropdown">
|
||||
<a href="<?php echo site_url("yllapito/kortit"); ?>">Hallitse kortteja</a>
|
||||
<?= lnk("yllapito/ecards", "Hallitse kortteja"); ?>
|
||||
<ul class="dropdown">
|
||||
<li>
|
||||
<a href="<?php echo site_url("yllapito/ecards/moderate");?>">
|
||||
|
||||
Reference in New Issue
Block a user