eidolon/templates/default-layout-wrapper.hamlet

55 lines
1.6 KiB
Text
Raw Normal View History

2014-08-09 18:33:22 +00:00
$newline never
2014-08-12 16:16:27 +00:00
$doctype 5
<html class="no-js" lang="en">
2014-08-09 18:33:22 +00:00
<head>
<meta charset="UTF-8">
2015-01-12 20:31:29 +00:00
<title>#{pageTitle wc}
2014-08-09 18:33:22 +00:00
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
^{pageHead pc}
2015-01-12 20:31:29 +00:00
^{pageHead wc}
2014-08-09 18:33:22 +00:00
<body>
<div id="wrapper">
^{pageBody pc}
2016-08-30 12:22:00 +00:00
<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 _