eidolon/templates/default-layout.hamlet

60 lines
1.4 KiB
Text
Raw Normal View History

2015-01-12 20:31:29 +00:00
<head>
^{pageHead wc}
<nav id="header">
2014-08-12 16:14:59 +00:00
<div id="top-nav">
<ul id="user-nav">
2014-09-21 16:44:11 +00:00
<li>
<a href=@{HomeR}>Home
2014-12-28 06:12:25 +00:00
$maybe _ <- msu
2014-09-14 03:07:20 +00:00
Logged in as <a href=@{UserR username}>#{slug}<br>
2014-08-12 16:14:59 +00:00
<li>
<a href=@{LogoutR}>Logout
<li>
2014-08-14 00:24:28 +00:00
<a href=@{NewAlbumR}>Create album
<li>
<a href=@{UploadR}>Upload image
2014-08-12 16:14:59 +00:00
$nothing
<li>
<a href=@{LoginR}>Login
2014-12-14 19:22:50 +00:00
$if block == False
<li>
<a href=@{SignupR}>Signup
2014-08-12 16:14:59 +00:00
2014-08-09 18:33:22 +00:00
$maybe msg <- mmsg
<div #message>#{msg}
<div id="main" role="main">
^{pageBody wc}
<div id="footer">
<div class="left">
#{appCopyright $ appSettings master}
2015-08-18 21:57:50 +00:00
<div class="right">
$case route
$of Just HomeR
get a Feed from This:
<a href=@{RootFeedAtomR}>Atom
|
<a href=@{RootFeedRssR}>RSS
$of Just (PageR _)
get a Feed from This:
<a href=@{RootFeedAtomR}>Atom
|
<a href=@{RootFeedRssR}>RSS
$of Just (ProfileR uId)
get a Feed from This:
<a href=@{UserFeedAtomR uId}>Atom
|
<a href=@{UserFeedRssR uId}>RSS
$of Just (UserR name)
get a Feed from This:
<a href=@{NameFeedAtomR name}>Atom
|
<a href=@{NameFeedRssR name}>RSS
$of Just (AlbumR aId)
get a Feed from This:
<a href=@{AlbumFeedAtomR aId}>Atom
|
<a href=@{AlbumFeedRssR aId}>RSS
$of _