rename
This commit is contained in:
		
							
								
								
									
										8
									
								
								aircox_cms/templates/aircox_cms/base_content.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								aircox_cms/templates/aircox_cms/base_content.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,8 @@
 | 
			
		||||
{% block pre_title %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
{% block title %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
{% block content %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										66
									
								
								aircox_cms/templates/aircox_cms/base_site.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										66
									
								
								aircox_cms/templates/aircox_cms/base_site.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,66 @@
 | 
			
		||||
{% load staticfiles %}
 | 
			
		||||
 | 
			
		||||
<html>
 | 
			
		||||
    <head>
 | 
			
		||||
        {# FIXME: page tags #}
 | 
			
		||||
        <meta charset="utf-8">
 | 
			
		||||
        <meta name="application-name" content="aircox-cms">
 | 
			
		||||
        <meta name="description" content="{{ website.description }}">
 | 
			
		||||
        <meta name="keywords" content="{{ website.tags }}">
 | 
			
		||||
 | 
			
		||||
        <link rel="stylesheet" href="{% static "aircox_aircox_cms/styles.css" %}" type="text/css">
 | 
			
		||||
        <title>{{ website.name }} {% if title %}- {{ title }} {% endif %}</title>
 | 
			
		||||
    </head>
 | 
			
		||||
    <body>
 | 
			
		||||
        {% if menus.top %}
 | 
			
		||||
            {{ menus.top|safe }}
 | 
			
		||||
        {% endif %}
 | 
			
		||||
 | 
			
		||||
        {% block header %}
 | 
			
		||||
            {% if menus.header %}
 | 
			
		||||
            <header>
 | 
			
		||||
                {{ menus.header|safe }}
 | 
			
		||||
            </header>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
 | 
			
		||||
        <div class="page">
 | 
			
		||||
            {% if menus.left %}
 | 
			
		||||
                {{ menus.left|safe }}
 | 
			
		||||
            {% endif %}
 | 
			
		||||
 | 
			
		||||
            <main>
 | 
			
		||||
                {% block pre_title %}
 | 
			
		||||
                {% endblock %}
 | 
			
		||||
                <h1>
 | 
			
		||||
                    {% block title %}
 | 
			
		||||
                    {{ title }}
 | 
			
		||||
                    {% endblock %}
 | 
			
		||||
                </h1>
 | 
			
		||||
                {% block post_title %}
 | 
			
		||||
                {% endblock %}
 | 
			
		||||
                <div class="content">
 | 
			
		||||
                    {% block content %}
 | 
			
		||||
                    {% endblock %}
 | 
			
		||||
                </div>
 | 
			
		||||
            </main>
 | 
			
		||||
 | 
			
		||||
            {% if menus.right %}
 | 
			
		||||
                {{ menus.right|safe }}
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        {% block footer %}
 | 
			
		||||
            {% if menus.footer %}
 | 
			
		||||
            <footer>
 | 
			
		||||
                {{ menus.footer|safe }}
 | 
			
		||||
            </footer>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
 | 
			
		||||
        {% if menus.bottom %}
 | 
			
		||||
            {{ menus.bottom|safe }}
 | 
			
		||||
        {% endif %}
 | 
			
		||||
    </body>
 | 
			
		||||
</html>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										19
									
								
								aircox_cms/templates/aircox_cms/detail.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								aircox_cms/templates/aircox_cms/detail.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,19 @@
 | 
			
		||||
{% extends embed|yesno:"aircox_cms/base_content.html,aircox_cms/base_site.html" %}
 | 
			
		||||
 | 
			
		||||
{% block title %}
 | 
			
		||||
{{ object.title }}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block pre_title %}
 | 
			
		||||
<time datetime="{{ object.date }}">
 | 
			
		||||
    {{ object.date|date:'l d F Y' }},
 | 
			
		||||
    {{ object.date|time:'H\hi' }}
 | 
			
		||||
</time>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
{% for section in sections %}
 | 
			
		||||
{{ section|safe }}
 | 
			
		||||
{% endfor %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										4
									
								
								aircox_cms/templates/aircox_cms/embed.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								aircox_cms/templates/aircox_cms/embed.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,4 @@
 | 
			
		||||
{# Used for embedded content #}
 | 
			
		||||
{% block content %}
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										44
									
								
								aircox_cms/templates/aircox_cms/list.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								aircox_cms/templates/aircox_cms/list.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,44 @@
 | 
			
		||||
{% extends embed|yesno:"aircox_cms/base_content.html,aircox_cms/base_site.html" %}
 | 
			
		||||
 | 
			
		||||
{% load i18n %}
 | 
			
		||||
{% load thumbnail %}
 | 
			
		||||
 | 
			
		||||
{% block content %}
 | 
			
		||||
<div class="post_list {{ classes }}">
 | 
			
		||||
{% for post in object_list %}
 | 
			
		||||
    <a class="post_item"
 | 
			
		||||
       href="{{ post.detail_url }}">
 | 
			
		||||
        {% if 'date' in view.fields or 'time' in list.fields %}
 | 
			
		||||
        <time datetime="{{ post.date }}" class="post_datetime">
 | 
			
		||||
            {% if 'date' in view.fields %}
 | 
			
		||||
            <span class="post_date">
 | 
			
		||||
                {{ post.date|date:'D. d F' }},
 | 
			
		||||
            </span>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
            {% if 'time' in view.fields %}
 | 
			
		||||
            <span class="post_time">
 | 
			
		||||
                {{ post.date|date:'H:i' }},
 | 
			
		||||
            </span>
 | 
			
		||||
            {% endif %}
 | 
			
		||||
        </time>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
 | 
			
		||||
        {% if 'image' in view.fields %}
 | 
			
		||||
        <img src="{% thumbnail post.image "64x64" crop %}" class="post_image">
 | 
			
		||||
        {% endif %}
 | 
			
		||||
 | 
			
		||||
        {% if 'title' in view.fields %}
 | 
			
		||||
        <h4 class="post_title">{{ post.title }}</h4>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
 | 
			
		||||
        {% if 'content' in view.fields %}
 | 
			
		||||
        <div class="post_content">
 | 
			
		||||
        {{ post.content|safe|striptags|truncatechars:"64" }}
 | 
			
		||||
        </div>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
    </a>
 | 
			
		||||
{% endfor %}
 | 
			
		||||
</div>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										10
									
								
								aircox_cms/templates/aircox_cms/menu.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								aircox_cms/templates/aircox_cms/menu.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,10 @@
 | 
			
		||||
 | 
			
		||||
<nav class="menu menu_{{ position }} {{ classes }}" {% if name %}
 | 
			
		||||
        name="menu_{{ name }}"
 | 
			
		||||
        id="menu_{{ name }}"
 | 
			
		||||
    {% endif %}>
 | 
			
		||||
    {% for section in sections %}
 | 
			
		||||
    {{ section|safe }}
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
</nav>
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										33
									
								
								aircox_cms/templates/aircox_cms/section.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								aircox_cms/templates/aircox_cms/section.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,33 @@
 | 
			
		||||
<div class="section {{ classes }}">
 | 
			
		||||
    {% if title %}
 | 
			
		||||
    <h1>
 | 
			
		||||
        {% block section_title %}
 | 
			
		||||
        {{ title }}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
    </h1>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
 | 
			
		||||
    {% if header %}
 | 
			
		||||
    <header class="section_header">
 | 
			
		||||
        {% block section_header %}
 | 
			
		||||
        {{ header }}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
    </header>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
 | 
			
		||||
    <div class="section_content">
 | 
			
		||||
        {% block section_content %}
 | 
			
		||||
        {{ content|safe }}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    {% if bottom %}
 | 
			
		||||
    <div class="section_bottom">
 | 
			
		||||
        {% block section_bottom %}
 | 
			
		||||
        {{ bottom }}
 | 
			
		||||
        {% endblock %}
 | 
			
		||||
    </div>
 | 
			
		||||
    {% endif %}
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										22
									
								
								aircox_cms/templates/aircox_cms/section_list.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								aircox_cms/templates/aircox_cms/section_list.html
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,22 @@
 | 
			
		||||
{% extends "aircox_cms/section.html" %}
 | 
			
		||||
 | 
			
		||||
{% load thumbnail %}
 | 
			
		||||
 | 
			
		||||
{% block section_content %}
 | 
			
		||||
<ul style="padding:0; margin:0">
 | 
			
		||||
    {% for item in object_list %}
 | 
			
		||||
    <li>
 | 
			
		||||
        {% if use_icons and item.icon %}
 | 
			
		||||
        <img src="{% thumbnail item.icon icon_size crop %}" class="icon">
 | 
			
		||||
        {% endif %}
 | 
			
		||||
 | 
			
		||||
        {{ item.title }}
 | 
			
		||||
 | 
			
		||||
        {% if item.text %}
 | 
			
		||||
            <small>{{ item.text }}</small>
 | 
			
		||||
        {% endif %}
 | 
			
		||||
    </li>
 | 
			
		||||
    {% endfor %}
 | 
			
		||||
</ul>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										6
									
								
								aircox_cms/templates/aircox_cms/tags
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								aircox_cms/templates/aircox_cms/tags
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,6 @@
 | 
			
		||||
!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
 | 
			
		||||
!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
 | 
			
		||||
!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
 | 
			
		||||
!_TAG_PROGRAM_NAME	Exuberant Ctags	//
 | 
			
		||||
!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
 | 
			
		||||
!_TAG_PROGRAM_VERSION	5.8	//
 | 
			
		||||
		Reference in New Issue
	
	Block a user