Last active
November 30, 2018 17:50
-
-
Save chamatt/8c98f1c2dfb97bded6ebf0c15d7a083c to your computer and use it in GitHub Desktop.
Blog posts
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
| <h1 class="text-center mt-4 blog-title-header">Posts</h1> | |
| <hr class="blog-title-separator" /> | |
| <section class="blog-container"> | |
| <!-- Cada post será um "article" e terá um post-id --> | |
| <article class="blog-post-container" data-post-id="1"> | |
| <div class="row"> | |
| <div class="blog-post-image col-3"> | |
| <img src="https://bit.ly/2So2zvB"></img> | |
| </div> | |
| <div class="col-7"> | |
| <div class="blog-post-title">Título do post 3</div> | |
| <div class="blog-post-body"> Esse é um teste de texto do blog, assim que o conteúdo vai aparecer</div> | |
| </div> | |
| <div class="col-2 d-flex align-items-center"> <!-- Botão de deletar que chama uma função --> | |
| <a style="color:white" class="btn btn-danger m-auto" onclick="DeletarPost(this)">X</a> | |
| </div> | |
| </div> | |
| </article> | |
| </section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment