aboutsummaryrefslogblamecommitdiff
path: root/juick-www/src/main/resources/templates/views/index.html
blob: 97d726de0dc9684fc461493b9a4897b04a35aed8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                               



                                
                     
                                     
            

                                                                                                            
                    

                                       

                                        
                                        
           
          
                                        
           

                
              
{% extends "layouts/default" %}
{% import "views/macros/tags" %}
{% block content %}
{% if noindex %}
<!--noindex-->
{% endif %}
{% for msg in msgs %}
{% include "views/partial/message" %}
{% endfor %}
{% if nextpage | default('') is not empty %}
<p class="page"><a href="{{ nextpage | raw }}" rel="prev">{{ i18n("messages","messages.next") }}</a></p>
{% endif %}
{% endblock %}
{% block "column" %}
{% if tag | default('') is not empty %}
{% include "views/partial/tagcolumn" %}
{% elseif visitor.uid > 0 %}
{% if discover %}
{% include "views/partial/homecolumn" %}
{% else %}
{% include "views/partial/usercolumn" %}
{% endif %}
{% else %}
{% include "views/partial/homecolumn" %}
{% endif %}
{% if noindex %}
<!--/noindex-->
{% endif %}
{% endblock %}