${post.title}
35 |${post.body}
36 |37 | ${post.comments.map(c => `
${c.email}:${c.body}
`).join('')} 38 |├── README.md ├── img └── git.png ├── style.css ├── index.html └── index.js /README.md: -------------------------------------------------------------------------------- 1 | # Curso Git 2 | 3 | Curso Git Mastermind 4 | 5 | Version 1 -------------------------------------------------------------------------------- /img/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastermindac/curso-git/HEAD/img/git.png -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #1d2127; 3 | color: #fff; 4 | font-family: "Overpass Mono", monospace; 5 | padding: 0; 6 | margin: 0; 7 | } 8 | 9 | h1 { 10 | margin: 0 0 0 8px; 11 | padding-top: 8px; 12 | } 13 | 14 | .bar { 15 | background-color: #464b55; 16 | padding: 10px; 17 | display: flex; 18 | } 19 | 20 | .logo { 21 | width: 50px; 22 | height: 50px; 23 | } 24 | 25 | .container { 26 | margin-top: 30px; 27 | padding: 0 60px 0 60px; 28 | } 29 | 30 | .post { 31 | background-color: #282c34; 32 | margin-bottom: 15px; 33 | padding: 5px 20px 5px 20px; 34 | border-radius: 12px; 35 | } 36 | 37 | .post h4 { 38 | color: #98c379; 39 | } 40 | 41 | .post span { 42 | color: #61afef; 43 | } 44 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |${post.body}
36 |${c.email}:${c.body}
`).join('')} 38 |