Last active
April 4, 2022 06:53
-
-
Save learntheropes/31f5d090b6d13dee9cec689c24a503c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<section class="section container"> | |
<div class="card"> | |
<div class="card-image"> | |
<figure class="image is-4by3"> | |
<img | |
src="https://bulma.io/images/placeholders/1280x960.png" | |
alt="Placeholder image" | |
/> | |
</figure> | |
</div> | |
<div class="card-content is-overlay"> | |
<div class="tags"> | |
<span class="tag is-primary">Overlay 1</span> | |
<span class="tag is-primary">Overlay 2</span> | |
</div> | |
</div> | |
<div class="card-content"> | |
<div class="media"> | |
<div class="content"> | |
<p class="title is-4">John Smith</p> | |
<p class="subtitle is-6">@johnsmith</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
</template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment