proper footer handling
This commit is contained in:
parent
735ecd6c5f
commit
37f9ee69e7
4 changed files with 22 additions and 23 deletions
|
@ -142,7 +142,7 @@
|
|||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#footer h2
|
||||
|
@ -153,15 +153,21 @@
|
|||
|
||||
#footer .left
|
||||
{
|
||||
display: inline-block;
|
||||
padding: 2em;
|
||||
text-align: left;
|
||||
float: left;
|
||||
}
|
||||
|
||||
#footer .right
|
||||
{
|
||||
/*
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
*/
|
||||
float: right;
|
||||
display:inline-block;
|
||||
padding: 2em;
|
||||
text-align: right;
|
||||
}
|
||||
|
|
|
@ -33,27 +33,32 @@ $maybe msg <- mmsg
|
|||
$case route
|
||||
$of Just HomeR
|
||||
get a Feed from This:
|
||||
<a href=@{RootFeedAtomR}>Atom
|
||||
<a href="@{RootFeedAtomR}">Atom
|
||||
|
|
||||
<a href=@{RootFeedRssR}>RSS
|
||||
<a href="@{RootFeedRssR}">RSS
|
||||
$of Just (PageR _)
|
||||
get a Feed from This:
|
||||
<a href=@{RootFeedAtomR}>Atom
|
||||
<a href="@{RootFeedAtomR}">Atom
|
||||
|
|
||||
<a href=@{RootFeedRssR}>RSS
|
||||
<a href="@{RootFeedRssR}">RSS
|
||||
$of Just (ProfileR uId)
|
||||
get a Feed from This:
|
||||
<a href=@{UserFeedAtomR uId}>Atom
|
||||
<a href="@{UserFeedAtomR uId}">Atom
|
||||
|
|
||||
<a href=@{UserFeedRssR uId}>RSS
|
||||
<a href="@{UserFeedRssR uId}">RSS
|
||||
$of Just (UserR name)
|
||||
get a Feed from This:
|
||||
<a href=@{NameFeedAtomR name}>Atom
|
||||
<a href="@{NameFeedAtomR name}">Atom
|
||||
|
|
||||
<a href=@{NameFeedRssR name}>RSS
|
||||
<a href="@{NameFeedRssR name}">RSS
|
||||
$of Just (AlbumR aId)
|
||||
get a Feed from This:
|
||||
<a href=@{AlbumFeedAtomR aId}>Atom
|
||||
<a href="@{AlbumFeedAtomR aId}">Atom
|
||||
|
|
||||
<a href=@{AlbumFeedRssR aId}>RSS
|
||||
<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 _
|
||||
|
|
|
@ -60,12 +60,6 @@ $if userId /= Nothing
|
|||
^{commentWidget}
|
||||
<div>
|
||||
<input type=submit value="Post comment">
|
||||
<div id="header" class="item">
|
||||
<div class="inner">
|
||||
<h3>
|
||||
Get a feed from this:
|
||||
<a href=@{CommentFeedAtomR mediumId}>Atom
|
||||
<a href=@{CommentFeedRssR mediumId}>RSS
|
||||
|
||||
<style type="text/css">
|
||||
body{background-image: url('/static/css/images/overlay.png'), -webkit-linear-gradient(top, rgba(0,0,0,0) 75%, rgba(0,0,0,0.65)), url('@{StaticR $ StaticRoute (drop 2 $ map T.pack $ splitDirectories $ mediumPath medium) []}');background-attachment:fixed;background-image: url('/static/css/images/overlay.png'), -moz-linear-gradient(center top , transparent 75%, rgba(0, 0, 0, 0.65)), url('@{StaticR $ StaticRoute (drop 2 $ map T.pack $ splitDirectories $ mediumPath medium) []}');}
|
||||
|
|
|
@ -51,9 +51,3 @@ $else
|
|||
<figure class="thumbnail">
|
||||
<img src=@{StaticR $ StaticRoute (drop 2 $ map T.pack $ splitDirectories $ mediumThumb medium) []} title=#{mediumTitle medium}>
|
||||
<figcaption>#{mediumTitle medium}
|
||||
|
||||
<div id="footer">
|
||||
<div class="right">
|
||||
get a feed from this:
|
||||
<a href=@{UserFeedAtomR ownerId}>Atom
|
||||
<a href=@{UserFeedRssR ownerId}>RSS
|
||||
|
|
Loading…
Reference in a new issue