Después de está lección, serás capaz de:
- Entender que es un Lenguaje de marcado.
- Comprender muy bien que es HTML.
- Entender la estructura de un documento HTML.
https://github.com/Enured/pokeblog-back | |
https://github.com/Enured/pokblog-front |
<div id="container"> | |
<div id="logo"> | |
<div id="rojo"> | |
<div id="rojo2"> | |
<div id="rojo3"></div> | |
</div> | |
</div> | |
<div id="verde"></div> |
<header> | |
<ul> | |
<li>login</li> | |
| | |
<li>signup</li> | |
| | |
<li>home</li> | |
</ul> | |
</header> |
router.get('/carlos', (req, res, next) => { | |
Post.find().populate('creator').populate({ | |
path:'comments', | |
populate:{ | |
path:'author', | |
model:'User' | |
} | |
}) | |
.then(posts => { | |
res.send(posts); |
{ | |
"name": "starter-code", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"webpack": "webpack-dev-server --progress --color", | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", |
react hooks - https://github.com/diurivj/React-Hooks | |
advanced routing react - https://github.com/diurivj/advanced-routing | |
ant design components - https://github.com/diurivj/lab-antd-components / sustituye bulma components | |
chat with socket.io - https://github.com/diurivj/socketioChat | |
auth with bcrypt - https://github.com/diurivj/First-auth-with-bcrypt | |
auth with firebase/hbs - https://github.com/diurivj/FirebaseAuthHBS | |
MongoDB-Atlas-Stitch-HTML - https://github.com/diurivj/MongoDB-Atlas-Stitch-HTML | |
git ignore - https://github.com/diurivj/Practica-de-gitignore/blob/master/foo/instrucciones.md | |
to do list dom - https://github.com/diurivj/ToDoListDOM | |
repaso módulo 1 - https://github.com/diurivj/REPASO-modulo-1-oct |
{ | |
"hosting": { | |
"public": "build", | |
"ignore": [ | |
"firebase.json", | |
"**/.*", | |
"**/node_modules/**" | |
], | |
"rewrites": [ | |
{ |