moved css to .rc1; improved assets loading a tiny bit

This commit is contained in:
Adrien W
2021-10-04 13:46:23 +02:00
parent f93060eae8
commit af8fdf2558
10 changed files with 11 additions and 16 deletions

View File

@@ -8,10 +8,7 @@ RewriteRule ^solutions$ /solutions.php [L]
RewriteRule ^mentionslegales$ /mentionslegales.php [L] RewriteRule ^mentionslegales$ /mentionslegales.php [L]
RewriteRule ^transparence$ /transparence.php [L] RewriteRule ^transparence$ /transparence.php [L]
# nginx rules ## nginx rules
#location / {
# rewrite ^/$ /index.php last;
#}
#location /cgu { #location /cgu {
# rewrite ^/cgu$ /cgu.php last; # rewrite ^/cgu$ /cgu.php last;
#} #}

View File

@@ -127,7 +127,7 @@ $currentPage = $pages['cgu'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -96,7 +96,7 @@ $currentPage = $pages['cgv'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -1,5 +1,3 @@
<link rel="stylesheet" type="text/css" href="dist/semantic.css"> <link rel="preload" href="dist/semantic.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link href="assets/style.css" rel="stylesheet" type="text/css"/> <noscript><link rel="stylesheet" href="dist/semantic.css"></noscript>
<script src="assets/library/jquery-3.6.0.min.js"></script> <link href="assets/style.rc1.css" rel="stylesheet" type="text/css"/>
<script src="dist/semantic.js"></script>
<script src="assets/script.js"></script>

View File

@@ -72,7 +72,7 @@ $currentPage = $pages['index'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -92,7 +92,7 @@ $currentPage = $pages['interventions'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -63,7 +63,7 @@ $currentPage = $pages['mentions'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -127,7 +127,7 @@ $currentPage = $pages['solutions'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>

View File

@@ -135,7 +135,7 @@ $currentPage = $pages['transparence'];
<?php include 'includes/_footer.php'; ?> <?php include 'includes/_footer.php'; ?>
</div> </div>
<?php include 'includes/_assetsLate.php'; ?>
</body> </body>
</html> </html>