eidolon/templates/default-layout-wrapper.hamlet

57 lines
1.7 KiB
Plaintext
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">
2017-08-14 16:25:38 +00:00
<link rel="icon" type="image/x-icon" href="@{FaviconR}">
2014-08-09 18:33:22 +00:00
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">
2016-09-09 17:15:02 +00:00
<a href=@{AboutR} target="_blank">
About Eidolon
2016-08-30 12:22:00 +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 Just (MediumR mId)
get a Feed from This:
<a href="@{CommentFeedAtomR mId}">Atom
|
<a href="@{CommentFeedRssR mId}">RSS
$of _