Skip to content
Snippets Groups Projects
Commit 4df946e9 authored by mazenovi's avatar mazenovi
Browse files

first full funcitonal release

parent 4b8abd04
Branches
No related tags found
No related merge requests found
Showing
with 51 additions and 2 deletions
<!-- Sidebar --> <!-- Sidebar -->
<section class="well well-sm"> <section class="well well-sm">
<ul class="list-group list-group-flush"> <ul class="list-group list-group-flush">
{% include 'includes/sidebar/search.html' %}
{% include 'includes/sidebar/optional_top.html' ignore missing %} {% include 'includes/sidebar/optional_top.html' ignore missing %}
{% include 'includes/sidebar/social.html' %} {% include 'includes/sidebar/social.html' %}
{% include 'includes/sidebar/recent_posts.html' %} {% include 'includes/sidebar/recent_posts.html' %}
......
...@@ -3,12 +3,13 @@ ...@@ -3,12 +3,13 @@
<!-- Sidebar/Links --> <!-- Sidebar/Links -->
<li class="list-group-item"> <li class="list-group-item">
<h4>{{ title(_('Links'), DISABLE_SIDEBAR_TITLE_ICONS, icon='external-link-square') }}</h4> <h4>
<i class="fa fa-link" aria-hidden="true"></i>
{{ title(_('Links'), DISABLE_SIDEBAR_TITLE_ICONS, icon='external-link-square') }}
</h4>
<ul class="list-group" id="links"> <ul class="list-group" id="links">
{% for name, link in LINKS %} {% for icon, name, link in LINKS %}
<li class="list-group-item"> <li class="list-group-item"><a href="{{ link }}"><i class="fa fa-{{ icon }}"></i> {{ name }}</a></li>
<a href="{{ link }}" target="_blank">{{ name }}</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</li> </li>
......
{% if 'tipue_search' in PLUGINS %}
<li class="list-group-item search">
<div class="input-group">
<input type="text" class="form-control" placeholder="{{ _('Search') }}">
<span class="input-group-addon"><i class="fa fa-search" aria-hidden="true"></i></span>
</div>
</li>
{% endif %}
{% if SOCIAL %}
{% from 'includes/sidebar/macros.jinja' import title %}
<!-- Sidebar/Social -->
<li class="list-group-item">
<h4>
<i class="fa fa-user-circle-o" aria-hidden="true"></i>
{{ title(_('Social'), DISABLE_SIDEBAR_TITLE_ICONS) }}
</h4>
<ul class="list-group" id="social">
{% for icon, name, link in SOCIAL %}
<li class="list-group-item"><a href="{{ link }}"><i class="fa fa-{{ icon }}"></i> {{ name }}</a></li>
{% endfor %}
</ul>
</li>
<!-- End Sidebar/Social -->
{% endif %}
...@@ -12,12 +12,18 @@ ...@@ -12,12 +12,18 @@
<!-- Sidebar/Tag Cloud --> <!-- Sidebar/Tag Cloud -->
<li class="list-group-item"> <li class="list-group-item">
<a href="{{ SITEURL }}/{{ TAGS_URL }}"><h4>{{ title(_('Tags'), DISABLE_SIDEBAR_TITLE_ICONS, icon='tags') }}</h4></a> <a href="{{ SITEURL }}/{{ TAGS_URL }}">
<h4>
<i class="fa fa-tags" aria-hidden="true"></i>
{{ title(_('Tags'), DISABLE_SIDEBAR_TITLE_ICONS, icon='tags') }}
</h4>
</a>
<ul class="list-group {% if DISPLAY_TAGS_INLINE %}list-inline tagcloud{% endif %}" id="tags"> <ul class="list-group {% if DISPLAY_TAGS_INLINE %}list-inline tagcloud{% endif %}" id="tags">
{% for tag in tags %} {% for tag in tags %}
<li class="list-group-item tag-{{ tag.1 }}"> <li class="list-group-item tag-{{ tag.1 }}">
<a href="{{ SITEURL }}/{{ tag.0.url }}"> <a href="{{ SITEURL }}/{{ tag.0.url }}">
{{- tag.0 -}} <i class="fa fa-tag" aria-hidden="true"></i> &nbsp; {{- tag.0 -}}
&nbsp; <span class="badge">{{- tag.2 -}}</span>
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment