-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
47 lines (45 loc) · 1.64 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--
Compressão e União de Arquivos
Arquivo responsável pelo recebimento dos arquivos css e js
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
@author Willian keller <[email protected]>
@package Compressao
-->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Compressão e União de Arquivos com Cache do Browser usando PHP</title>
<!--
Chamada do arquivo de stylesheet
Incluindo os arquivos:
- css/bootstrap
- css/exemplo
-->
<script>console.time("CSS:");</script>
<link href="comprime/css/css/bootstrap;css/exemplo" rel="stylesheet" type="text/css">
<script>console.timeEnd("CSS:");</script>
</head>
<body>
<div class="container">
<div class="row">
<Div class="col-sm-6 col-sm-offset-3">
<div class="minha-area text-center mt-100">
<h2 class="text-info hidden">Compressão e União de Arquivos com Cache do Browser usando PHP</h2>
<h4 class="text-muted hidden"></h4>
<h5 class="text-muted hidden"></h5>
</div>
</div>
</div>
</div>
<!--
Chamada do arquivo de javascript
Incluindo os arquivos:
- js/jquery
- js/bootstrap.min
-->
<script>console.time("JS:");</script>
<script src="comprime/js/js/jquery.min;js/bootstrap.min;js/exemplo"></script>
<script>console.timeEnd("JS:");</script>
</body>
</html>