eidolon/templates/default-layout.hamlet

65 lines
1.8 KiB
Plaintext
Raw Normal View History

<nav id="header">
2016-03-02 08:52:22 +00:00
<ul id="user-nav" .nav .nav-pills>
<li role="presentation">
2014-09-21 16:44:11 +00:00
<a href=@{HomeR}>Home
2016-02-29 04:58:28 +00:00
$maybe su <- msu
2016-03-02 08:52:22 +00:00
<li role="presentation">
<a href=@{UserR username}>#{slug}<br>
<li role="presentation">
2014-08-12 16:14:59 +00:00
<a href=@{LogoutR}>Logout
2016-03-02 08:52:22 +00:00
<li role="presentation">
2014-08-14 00:24:28 +00:00
<a href=@{NewAlbumR}>Create album
2016-03-02 08:52:22 +00:00
<li role="presentation">
2015-08-24 11:30:41 +00:00
<a href=@{UploadR}>Upload images
2014-08-12 16:14:59 +00:00
$nothing
2016-03-02 08:52:22 +00:00
<li role="presentation">
2014-08-12 16:14:59 +00:00
<a href=@{LoginR}>Login
2014-12-14 19:22:50 +00:00
$if block == False
2016-03-02 08:52:22 +00:00
<li role="presentation">
2014-12-14 19:22:50 +00:00
<a href=@{SignupR}>Signup
2016-03-02 08:52:22 +00:00
<li role="presentation" #search>
<div #search>
^{pageBody searchWidget}
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">
^{pageBody copyrightWidget}
2015-08-18 21:57:50 +00:00
<div class="right">
$case route
$of Just HomeR
get a Feed from This:
2015-08-19 01:48:31 +00:00
<a href="@{RootFeedAtomR}">Atom
2015-08-18 21:57:50 +00:00
|
2015-08-19 01:48:31 +00:00
<a href="@{RootFeedRssR}">RSS
2015-08-18 21:57:50 +00:00
$of Just (PageR _)
get a Feed from This:
2015-08-19 01:48:31 +00:00
<a href="@{RootFeedAtomR}">Atom
2015-08-18 21:57:50 +00:00
|
2015-08-19 01:48:31 +00:00
<a href="@{RootFeedRssR}">RSS
2015-08-18 21:57:50 +00:00
$of Just (ProfileR uId)
get a Feed from This:
2015-08-19 01:48:31 +00:00
<a href="@{UserFeedAtomR uId}">Atom
2015-08-18 21:57:50 +00:00
|
2015-08-19 01:48:31 +00:00
<a href="@{UserFeedRssR uId}">RSS
2015-08-18 21:57:50 +00:00
$of Just (UserR name)
get a Feed from This:
2015-08-19 01:48:31 +00:00
<a href="@{NameFeedAtomR name}">Atom
2015-08-18 21:57:50 +00:00
|
2015-08-19 01:48:31 +00:00
<a href="@{NameFeedRssR name}">RSS
2015-08-18 21:57:50 +00:00
$of Just (AlbumR aId)
get a Feed from This:
2015-08-19 01:48:31 +00:00
<a href="@{AlbumFeedAtomR aId}">Atom
2015-08-18 21:57:50 +00:00
|
2015-08-19 01:48:31 +00:00
<a href="@{AlbumFeedRssR aId}">RSS
$of Just (MediumR mId)
get a Feed from This:
<a href="@{CommentFeedAtomR mId}">Atom
|
<a href="@{CommentFeedRssR mId}">RSS
2015-08-18 21:57:50 +00:00
$of _