A Pen by DaviRamos (@JoãoDegolaBoi) on CodePen.
Created
December 10, 2017 11:56
-
-
Save DaviRamosAndrade/11547b30fe0ecb37132404f6626fa6ef to your computer and use it in GitHub Desktop.
Jade: usando estrutura de loop
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
- var droids = ["R2D2", "C3PO", "BB8"]; | |
div | |
h1 Famous Droids from Star Wars | |
for name in droids | |
div.card | |
h2=name |
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
html | |
background-color: #ccc | |
.card | |
font-family: "Noto Sans" | |
margin: 5px | |
text-align: center | |
padding: 1px | |
background-color: #eee |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment