szurubooru/client/html/home.tpl

17 lines
599 B
Smarty
Raw Normal View History

2016-03-31 22:33:49 +02:00
<div class='content-wrapper transparent' id='home'>
<div class='messages'></div>
<header>
<h1><%- ctx.name %></h1>
</header>
<% if (ctx.canListPosts) { %>
<form class='horizontal'>
2016-07-06 09:49:21 +02:00
<%= ctx.makeTextInput({name: 'search-text', placeholder: 'enter some tags'}) %>
<input type='submit' value='Search'/>
<span class=sep>or</span>
<a href='<%- ctx.formatClientLink('posts') %>'>browse all posts</a>
</form>
<% } %>
<div class='post-info-container'></div>
2016-07-06 09:49:21 +02:00
<footer class='footer-container'></footer>
2016-03-31 22:33:49 +02:00
</div>