mirror of
https://github.com/ae-utbm/sith.git
synced 2025-11-22 12:46:58 +00:00
39 lines
1.1 KiB
Django/Jinja
39 lines
1.1 KiB
Django/Jinja
{% extends "core/base.jinja" %}
|
|
{% from 'core/macros.jinja' import user_profile_link %}
|
|
|
|
{% block title -%}
|
|
{{ club.name }}
|
|
{%- endblock %}
|
|
|
|
{% block description -%}
|
|
{{ club.short_description }}
|
|
{%- endblock %}
|
|
|
|
{% block metatags %}
|
|
<meta property="og:url" content="{{ request.build_absolute_uri(club.get_absolute_url()) }}" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="{{ club.name }}" />
|
|
<meta property="og:description" content="{{ club.short_description }}" />
|
|
{% if club.logo %}
|
|
<meta property="og:image" content="{{ request.build_absolute_uri(club.logo.url) }}" />
|
|
{% else %}
|
|
<meta property="og:image" content="{{ request.build_absolute_uri(static("core/img/logo_no_text.png")) }}" />
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="club_detail">
|
|
{% if club.logo %}
|
|
<div class="club_logo"><img src="{{ club.logo.url }}" alt="{{ club.name }}"></div>
|
|
{% endif %}
|
|
{% if page_revision %}
|
|
{{ page_revision|markdown }}
|
|
{% else %}
|
|
<h3>{{ club.name }}</h3>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|