mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:08:35 +08:00
f5af4768eb
To setup set DISCOURSE_RELATIVE_URL_ROOT to the folder you wish
23 lines
745 B
Plaintext
23 lines
745 B
Plaintext
<header class="d-header">
|
|
<div class="container">
|
|
<div class="contents">
|
|
<div class="row">
|
|
<div class="title span13">
|
|
<a href="/">
|
|
<%- if application_logo_url.present? %>
|
|
<img src="<%= application_logo_url %>" alt="<%= SiteSetting.title %>" id="site-logo">
|
|
<%- else %>
|
|
<h2 id='site-text-logo'><%= SiteSetting.title %></h2>
|
|
<%- end %>
|
|
</a>
|
|
</div>
|
|
<% unless current_user %>
|
|
<div class='panel clearfix'>
|
|
<a href="<%= path "/login"%>" class='btn btn-primary btn-small'><i class="fa fa-user"></i><%= I18n.t('log_in') %></a>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|