
<style>
.identCard .mug {
  max-height: 50vh;
}

.identCard .logo {
  max-height: 25vh;
}

.identCard .info {
  text-align: left;
}

</style>
<div class="identCard row">
  <div class="four columns">
    <div class="mug" data-background-image="{{ mug }}"></div>
    {% if logo %}<img class="logo" src="{{ logo }}">{% endif %}
  </div>
  <div class="info eight columns">
    {% if name %}<h1 class="name">{{ name }}</h1>{% endif %}
    {% if title %}<h2 class="title">{{ title }}</h2>{% endif %}
    {% if affiliation %}<h2 class="affiliation">{{ affiliation }}</h2>{% endif %}
  </div>
</div>