mirror of https://github.com/zulip/zulip.git
66 lines
2.5 KiB
HTML
66 lines
2.5 KiB
HTML
{# Home tab of the app, containing messages. #}
|
|
|
|
<div class="row-fluid">
|
|
{# A span has a min-height of 30px according to Bootstrap but we want this one hidden #}
|
|
<div class="span12" style="min-height: 0px">
|
|
<div id="floating_recipient_bar">
|
|
<div class="message_area_padder">
|
|
<table class="floating_recipient">
|
|
<tr id="floating_recipient_layout_row" class="ztable_layout_row">
|
|
<td class="ztable_col1" />
|
|
<td class="ztable_col2" />
|
|
<td class="ztable_col3" />
|
|
</tr>
|
|
<tr style="display: none;" id="current_label_stream" class="recipient_row">
|
|
<td colspan="2" class="message_label_clickable message_header message_header_stream left_part"></td>
|
|
<td class="message_label_clickable message_header message_header_stream right_part"></td>
|
|
</tr>
|
|
<tr style="display: none;" id="current_label_private_message" class="recipient_row">
|
|
<td colspan="2" class="message_label_clickable message_header message_header_private_message left_part"></td>
|
|
<td class="message_label_clickable message_header message_header_private_message right_part"></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<div class="message_list message_area_padder" id="main_div">
|
|
<div id="loading_more_messages_indicator"></div>
|
|
<div id="page_loading_indicator"></div>
|
|
<div id="first_run_message" class="empty_feed_notice">
|
|
<h4>Welcome to Humbug</h4>
|
|
<p>See, the thing about it is... there aren't any messages
|
|
here for you right now. I'm sure someone will eventually send
|
|
you one.</p>
|
|
|
|
<p>Or, <strong>take matters into your own hands</strong>,
|
|
and <a href="#" onclick="compose.start('stream');return false;">
|
|
compose a new stream message</a>.</p>
|
|
</div>
|
|
<div id="empty_narrow_message" class="empty_feed_notice">
|
|
<h4>Nothing's been sent here yet!</h4>
|
|
|
|
<p>Why not <a href="#" onclick="compose.start('stream'); return false;">
|
|
start the conversation</a>?</p>
|
|
</div>
|
|
<table class="message_table focused_table" id="zhome">
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<table class="message_table" id="zfilt">
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<div id="bottom_whitespace"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% include "zephyr/compose.html" %}
|
|
<div id="notifications-area">
|
|
<div id="notifications-bar"></div>
|
|
</div>
|