aboutsummaryrefslogtreecommitdiff
path: root/modules/private/websites/immae/history/_includes/post.html
blob: 04f4a77e9371f638e494e30384acd44997e7800a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div class="row p-3">
    <div class="col-md-3 mb-3">
      <a href="{{ include.url | prepend: site.baseurl | replace: '//', '/' }}" class="post-date text-muted">
        {{ include.date | date: '%F' }}
      </a>
    </div>
    <div class="col-md-9">
      <h2 class="title">
        {{ include.title }}
      </h2>
      <div>
        {% if include.category %}

          {% for category in site.data.categories %}
          {% if category.name == include.category %}
          {% assign color = category.color | downcase | prepend: 'bg-' %}
          {% endif %}
          {% endfor %}
          <span class="category {% if color %}{{ color }}{% endif %}">{{ include.category }}</span>
        {% endif %}
      </div>
        <div class="post-content my-4 text-grey-darker leading-normal text-base font-thin">
          {{ include.content }}
        </div>
    </div>
  </div>