Merge pull request #114 from eai04191/feature/card-component

リンクカードをコンポーネント化
This commit is contained in:
shibafu
2019-02-27 23:22:27 +09:00
committed by GitHub
5 changed files with 17 additions and 36 deletions

View File

@@ -0,0 +1,9 @@
<div class="card link-card mb-2 px-0 col-12 col-md-6 d-none" style="font-size: small;">
<a class="text-dark card-link" href="{{ $link }}" target="_blank" rel="noopener">
<img src="" alt="Thumbnail" class="card-img-top bg-secondary">
<div class="card-body">
<h6 class="card-title font-weight-bold">タイトル</h6>
<p class="card-text">コンテンツの説明文</p>
</div>
</a>
</div>