eidolon/templates/default-layout.hamlet
2016-03-02 09:52:22 +01:00

65 lines
1.8 KiB
Plaintext
Executable file

<nav id="header">
<ul id="user-nav" .nav .nav-pills>
<li role="presentation">
<a href=@{HomeR}>Home
$maybe su <- msu
<li role="presentation">
<a href=@{UserR username}>#{slug}<br>
<li role="presentation">
<a href=@{LogoutR}>Logout
<li role="presentation">
<a href=@{NewAlbumR}>Create album
<li role="presentation">
<a href=@{UploadR}>Upload images
$nothing
<li role="presentation">
<a href=@{LoginR}>Login
$if block == False
<li role="presentation">
<a href=@{SignupR}>Signup
<li role="presentation" #search>
<div #search>
^{pageBody searchWidget}
$maybe msg <- mmsg
<div #message>#{msg}
<div id="main" role="main">
^{pageBody wc}
<div id="footer">
<div class="left">
^{pageBody copyrightWidget}
<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 Just (MediumR mId)
get a Feed from This:
<a href="@{CommentFeedAtomR mId}">Atom
|
<a href="@{CommentFeedRssR mId}">RSS
$of _