A estrutura de diretórios do Framework SEST SENAT organiza os arquivos e as pastas como padrões seguinte abaixo:
nome-projeto/
├── css/
│ ├── framework-sest-senat.css
├── img/
│ ├── loading.gif
│ ├── logotipo-sest-senat.png
│ ├── logotipo-sest-senat-original.png
│ ├── logotipo-sest-senat-original-inverso.png
├── js/
│ ├── min/
│ │ ├── jquery.min.js
│ │ ├── html5shiv.min.js
│ │ ├── respond.min.js
│ ├── framework-sest-senat.js
└── fonts/
├── glyphicons-halflings-regular.eot
├── glyphicons-halflings-regular.svg
├── glyphicons-halflings-regular.ttf
├── glyphicons-halflings-regular.woff
└── glyphicons-halflings-regular.woff2
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Nome do título</title>
<!-- CSS -->
<link href="css/framework-sest-senat.css" rel="stylesheet">
<link href="css/nome-arquivo.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/min/html5shiv.min.js"></script>
<script src="js/min/respond.min.js"></script>
<![endif]-->
</head>
<body>
...
<!-- JavaScript -->
<script src="js/min/jquery.min.js"></script>
<script src="js/framework-sest-senat.js"></script>
<script src="js/nome-arquivo.js"></script>
</body>
</html>