swizzler/templates/messages.html
The Dod 3ffb1e6524 User fullname and avatar are now in an iframe
Great performance boost.

Also:
* Input field to copy @username
  Once we can post, this may be handy
* Search is also an iframe (containing an iframe per user)
  So you can keep composing a twist while searching for usernames
* Should be responsive for cellulars (I can only resize browser
  to check. Got no phone. Anyway, the floating "Fork me" footer
  now has a link to navigation (local users), and that's about all
  the essential navigation. You can scroll a bit down from there
  for search results, or all the way up for the content.
* Make sure Dillo etc. that don't see bootstrap font icon
  can still have text links to everything

Enjoy
2014-04-06 13:18:18 +07:00

81 lines
3.8 KiB
HTML

<!DOCTYPE html>
<html language="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
<link rel="icon" type="image/x-icon" href="{{site_root}}/favicon.ico">
<link href="{{site_root}}/assets/css/bootstrap.min.css" rel="stylesheet">
<link href="{{site_root}}/assets/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="{{site_root}}/assets/css/swizzler.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div id="main" class="col-md-8">
<div class="row">
<div id="header" class="col-md-12 well">
{{#subject}}
<div class="media">
<a class="pull-left thumbnail" href="{{site_root}}/user/{{username}}">
<img class="media-object avatar" src="{{#avatar}}{{.}}{{/avatar}}{{^avatar}}/assets/img/twister-64.jpg{{/avatar}}" alt="{{fullname}}">
</a>
<div class="media-body">
<h3 class="media-heading">
<a class="label label-primary" href="{{site_root}}/messages/{{username}}{{#remoteuser}}/{{username}}{{/remoteuser}}"
title="@{{username}}'s messages{{#remoteuser}} with {{username}}{{/remoteuser}}"
><span class="glyphicon glyphicon-envelope"></span>
{{fullname}}'s direct messages
{{#remoteuser}}with {{fullname}}{{/remoteuser}}</a>
</h3>
<h4>
<a class="label label-primary" href="{{site_root}}/home/{{username}}" title="@{{username}}'s home"><span class="glyphicon glyphicon-home"></span> Home</a>
<a class="label label-primary" href="{{site_root}}/home/{{username}}/mentions" title="mentions of @{{username}}"><span class="glyphicon glyphicon-bell"></span> Mentions</a>
<a class="label label-info" href="{{site_root}}/user/{{username}}" title="@{{username}}'s profile"><span class="glyphicon glyphicon-user"></span> Profile</a>
</h4>
</div>
</div>
{{/subject}}
</div>
</div>
<div class="row">
<div id="messages" class="col-md-12">
{{#any_threads}}
<ul class="list-group media-list">
{{#threads}}
{{^remoteuser}}
<a class="label label-primary" href="{{site_root}}/messages/{{subject.username}}/{{username}}"
title="See more messages to/from @{{username}}">@{{username}} <span class="glyphicon glyphicon-arrow-right"></span></a>
{{/remoteuser}}
{{#remoteuser}}
{{#subject}}
<a class="label label-primary" href="{{site_root}}/messages/{{subject.username}}"
title="Back to @{{username}}'s direct message summary"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
{{/subject}}
{{/remoteuser}}
<ul class="list-group media-list">
{{#messages}}
{{> message}}
{{/messages}}
</ul>
{{/threads}}
</ul>
{{/any_threads}}
{{^threads}}
<h4><small>Nothing. Nada. Rien de rien. &#128557;</small></h4>
{{/threads}}
</div>
</div>
</div>
<div id="sidebar" class="col-md-4">
{{> sidebar}}
</div>
</div>
{{> footer}}
</div> <!-- /container -->
</body>
</html>