12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {% extends 'base.html' %}
- {% block title %}
- {{ super() }}
- {% endblock title %}
- {% block content %}
- <div class="row-fluid">
- {% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.title %}
- <header class="page-header span12">
- <h1><a href="{{ SITEURL }}">{{ LANDING_PAGE_ABOUT.title }}</a></h1>
- </header>
- {% endif %}
- <div class="row-fluid">
- {% if LANDING_PAGE_ABOUT and LANDING_PAGE_ABOUT.details %}
- <div class="span8">
- <header>
- <h1 id="about-me">About me</h1>
- </header>
- <div class="article-content">
- {{ LANDING_PAGE_ABOUT.details }}
- </div>
- </div>
- {% endif %}
- {% if PROJECTS %}
- <div class="span4">
- <header>
- <h1 id="my-projects">My Projects</h1>
- </header>
- {% for project in PROJECTS %}
- <ul class="list-all-articles">
- <li>
- <a href="{{ project.url }}" title="{{ project.name }}">{{ project.name }}</a> <span class="proj-desc">{{ project.description }}</span>
- </li>
- </ul>
- {%endfor %}
- </div>
- {% endif %}
- </div>
- {% if articles %}
- <div class="row-fluid">
- <div class="span12">
- <header>
- <h1 id="recent-posts">Recent Posts <a id="allposts" href="{{ SITEURL }}/archives.html">all posts</a></h1>
- </header>
- <div class="recent-posts">
- {% for article in articles %}
- {% if not RECENT_ARTICLES_COUNT %}
- {% set RECENT_ARTICLES_COUNT = 10 %}
- {% endif %}
- {% if loop.index0 < RECENT_ARTICLES_COUNT %}
- <article>
- <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a>
- <section>
- posted in
- <a href="{{ SITEURL }}/categories.html#{{ article.category.slug }}-ref">{{ article.category }}</a>
- <div class="recent-posts-time">
- <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
- </div>
- </section>
- </article>
- {% endif %}
- {% endfor %}
- </div>
- </div>
- </div>
- {% endif %}
- </div>
- {% endblock content %}
|