Skip to content

Latest commit

 

History

History
executable file
·
69 lines (65 loc) · 2.91 KB

nav_supporters.md

File metadata and controls

executable file
·
69 lines (65 loc) · 2.91 KB
layout title icon permalink
frame
- Supporters
<i class="fas fa-handshake"></i>
/supporters/

{{ page.icon }}{{ page.title }}

행사를 열고 진행하는데 도움을 주신 분들입니다.

{% for host-b in site.host-b %}
{{ host-b.name }}
{{ host-b.name }}

{{ host-b.desc }}

웹사이트 방문
{% endfor %}
<div style="padding: 5px 5px 5px 5px; margin: auto; float:center; text-align:center">
{% for host-a in site.host-a %}
<div class="card" style="width: 20rem; height: auto;">
  <img class="card-img-top" src="{{ site.baseurl }}/assets/imgs/{{ host-a.image }}" alt="{{ host-a.name }}" style="max-width: 100%;height: 10rem;">
  <div class="card-body">
    <h5 class="card-title">{{ host-a.name }}</h5>
    <p class="card-text">{{ host-a.desc }}</p>
    <a href="{{ host-a.url }}" class="btn btn-primary">웹사이트 방문</a>
  </div>
</div>
{% endfor %}
</div>

<div style="padding: 5px 5px 5px 5px; margin: auto; float:center; text-align:center">
{% for host-c in site.host-c %}
<div class="card" style="width: 20rem; height: auto;">
  <img class="card-img-top" src="{{ site.baseurl }}/assets/imgs/{{ host-c.image }}" alt="{{ host-c.name }}" style="max-width: 100%;height: 10rem;">
  <div class="card-body">
    <h5 class="card-title">{{ host-c.name }}</h5>
    <p class="card-text">{{ host-c.desc }}</p>
    <a href="{{ host-c.url }}" class="btn btn-primary">웹사이트 방문</a>
  </div>
</div>
{% endfor %}
</div>

<div style="padding: 5px 5px 5px 5px; margin: auto; float:center; text-align:center">
{% for supporters in site.supporters %}
<div class="card" style="width: 20rem; height: auto;">
  <img class="card-img-top" src="{{ site.baseurl }}/assets/imgs/{{ supporters.image }}" alt="{{ supporters.name }}" style="max-width: 100%;height: 10rem;">
  <div class="card-body">
    <h5 class="card-title">{{ supporters.name }}</h5>
    <p class="card-text">{{ supporters.desc }}</p>
    <a href="{{ supporters.url }}" class="btn btn-primary">웹사이트 방문</a>
  </div>
</div>
{% endfor %}
</div>
{% include sponsors.html %}