{% extends "layout.html" %} {% import "macros/_misc.html" as misc %} {% block page_title %}{{current_event.name}} / Print{% endblock %} {% block body_class %}print-page{% endblock %} {% macro render_print_project(project) %}
{% if project.image_url %} {% endif %} {% if project.hashtag %}

{{project.hashtag}}

{% endif %}

{% if project.logo_icon %} {% endif %} {{project.name}}

{% if project.summary %}

{{project.summary}}

{% endif %} {% if project.team %} {% endif %}
{% if request.args.get('longtext') and project.longtext %}
~ PITCH ~
{{project.longtext|markdown|safe}}
{% endif %} {% if request.args.get('longtext') and project.autotext %}
~ README ~
{{project.autotext|markdown|safe}}
{% endif %}
{% endmacro %} {% block content %}
All our hack are belong to us.

Active projects and challenges as of {{ curdate }}.

{% if not request.args.get('longtext') %} Show full text {% else %} Hide full text {% endif %} Print CSV Data Package


{% for project in projects %} {{ render_print_project(project) }} {% endfor %} {% if projects %}
{% endif %}

Challenges

{% for project in challenges %} {{ render_print_project(project) }} {% endfor %}
{% endblock %}