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
| <!-- This is the markup output --> | |
| <picture class="picture__base"> | |
| <source srcset="image-cropped?witdh=480" media="(min-width: 480px)"> | |
| <source srcset="image-cropped?witdh=768" media="(min-width: 768px)"> | |
| <source srcset="image-cropped?witdh=1024" media="(min-width: 1024px)"> | |
| <img class="picture__img" src="cropped?witdh=480.png" alt="image-alt"> | |
| </picture> |
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
| <!-- This headline should be dinamic, so you can choose the hN, as appropriate --> | |
| <h2 class="title__hl"> | |
| <span class="title__title">Some title here</span> | |
| </hl> |
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
| // let's suppose here you have a general configuration that exports the path to sources like this | |
| // get the node modules path | |
| const nodemodules = path.join(cwd, 'node_modules'); | |
| const includePaths = [nodemodules, ] | |
| module.exports = { | |
| module: { | |
| rules: [ | |
| { | |
| test: /\.s[ac]ss$/i, |
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
| [alias] | |
| co = checkout | |
| com = commit -am | |
| aa = add -A | |
| cot = checkout --track | |
| st = status | |
| sta = stash save | |
| stal = stash list | |
| bll = branch -a | |
| blr = branch -r |