Procházet zdrojové kódy

Create and insert an empty shared footer

DricomDragon před 5 roky
rodič
revize
325d83d957

+ 6 - 0
web/include/footer.php

@@ -0,0 +1,6 @@
+<footer class="footer bg-dark mt-5">
+    <div class="container">
+        <span class="text-muted">Shared footer</span>
+    </div>
+</footer>
+

+ 3 - 8
web/public/contact.php

@@ -33,14 +33,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer fixed-bottom bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Images sources : ICON8</span>
-            <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-            <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-            <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-        </div>
-    </footer>
+    <?php
+        include("../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 10
web/public/cv.php

@@ -352,16 +352,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Images sources : ICON8</span>
-            <a href="https://icons8.com/icon/23319/student-male">Student Male icon by Icons8</a>
-            <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-            <a href="https://icons8.com/icon/12810/treble-clef">Treble Clef icon by Icons8</a>
-            <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-            <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-        </div>
-    </footer>
+    <?php
+        include("../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 5
web/public/index.php

@@ -35,11 +35,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Version v2.05 - mise en ligne le 4 aout 2019</span>
-        </div>
-    </footer>
+    <?php
+        include("../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 12
web/public/projets.php

@@ -197,18 +197,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Images sources : ICON8</span>
-            <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-            <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-            <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-            <a href="https://icons8.com/icon/15175/rocket">Rocket icon by Icons8</a>
-            <a href="https://icons8.com/icon/21447/space-shuttle">Space Shuttle icon by Icons8</a>
-            <a href="https://icons8.com/icon/23885/blueprint">Blueprint icon by Icons8</a>
-            <a href="https://icons8.com/icon/62040/uranus-planet">Uranus Planet icon by Icons8</a>
-        </div>
-    </footer>
+    <?php
+        include("../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 8
web/public/projets/pro_ascii_space.php

@@ -491,14 +491,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Images sources : ICON8</span>
-            <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-            <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-            <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-        </div>
-    </footer>
+    <?php
+        include("../../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 9
web/public/projets/pro_pulsar.php

@@ -63,15 +63,9 @@
     </main>
 
     <!-- Footer -->
-    <!-- todo : remove fixed-bottom as soon as content was filled -->
-    <footer class="footer bg-dark mt-5 fixed-bottom">
-            <div class="container">
-                    <span class="text-muted">Images sources : ICON8</span>
-                    <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-                    <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-                    <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-            </div>
-    </footer>
+    <?php
+        include("../../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 9
web/public/projets/pro_quoridor.php

@@ -64,15 +64,9 @@
     </main>
 
     <!-- Footer -->
-    <!-- todo : remove fixed-bottom as soon as content was filled -->
-    <footer class="footer bg-dark mt-5 fixed-bottom">
-            <div class="container">
-                    <span class="text-muted">Images sources : ICON8</span>
-                    <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-                    <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-                    <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-            </div>
-    </footer>
+    <?php
+        include("../../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"

+ 3 - 14
web/public/projets/pro_static_site.php

@@ -246,20 +246,9 @@
     </main>
 
     <!-- Footer -->
-    <footer class="footer bg-dark mt-5">
-        <div class="container">
-            <span class="text-muted">Images sources : ICON8</span>
-            <a href="https://icons8.com/icon/104082/cv">CV icon by Icons8</a>
-            <a href="https://icons8.com/icon/104084/city">City icon by Icons8</a>
-            <a href="https://icons8.com/icon/19293/code">Code icon by Icons8</a>
-            <a href="https://icons8.com/icon/20909/html-5">Html 5 icon by Icons8</a>
-            <a href="https://icons8.com/icon/31748/term">Term icon by Icons8</a>
-            <a href="https://icons8.com/icon/84710/bootstrap">Bootstrap icon by Icons8</a>
-            <a href="https://icons8.com/icon/13443/raspberry-pi">Raspberry Pi icon by Icons8</a>
-            <a href="https://icons8.com/icon/63267/dns">DNS icon by Icons8</a>
-            <a href="https://icons8.com/icon/20825/icons8">Icons8 icon by Icons8</a>
-        </div>
-    </footer>
+    <?php
+        include("../../include/footer.php")
+    ?>
 
     <!-- Scripts -->
     <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"