discourse/app/views/embed/loading.html.erb

13 lines
341 B
Plaintext
Raw Normal View History

<header class='discourse' data-embed-state='loading'>
<h3><%= t 'embed.loading' %></h3>
2018-11-14 02:03:02 -05:00
<%= link_to(image_tag(SiteSetting.site_logo_url, class: 'logo'), Discourse.base_url) %>
<div class='clearfix'></div>
</header>
<script>
(function() {
setTimeout(function() {
document.location.reload();
}, 30000);
})();
</script>