repository contains base tamplate
- Use css media queries
- Use mobile-first methodology
- Use scss
- Use css variables
- Add sourcemap for scss
- Base template should have slider
- Markups must be adapted according to design and Bootstrap breakpoint
Follow this pattern for organization of developed components.
├── app
│ ├── css
│ ├── fonts
│ ├── img
│ ├── js
│ ├── libs
│ ├── scss
│ └── index.html
├──.editorconfig
├──.gitignore
├──.CHANGELOG.md
├──.gulpfile.js
├──README.md
├──package.json
└──
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>
<title>PZ_1_12</title>
<link rel="stylesheet" type="text/css" href="css/app.css">
</head>
<body>
<script src="js/bundle.js"></script>
</body>
</html>