-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
57 lines (47 loc) · 1.96 KB
/
footer.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
48
49
50
51
52
53
54
55
56
57
<?php
/**
* The template for displaying the footer.
*
* @package cctoolkit
*/
include 'translations.php';
?>
<!-- Footer -->
<footer>
<div class="row">
<div class="col-md-12">
<img src="/wp-content/themes/cctoolkit/img/footer_cc_logo.svg" />
</div>
</div>
<div class="row desktop">
<div class="col-md-6 col-xs-6 footer_description">
<ul>
<li><?= $word_by ?></li>
<li><?= $word_coordination ?></li>
<li><?= $word_spanish_credits ?></li>
<li><?= $word_design_dev ?></li>
<li><?= $word_licensed ?></li>
</ul>
</div>
<div class="col-md-5 col-xs-6 footer_links">
<ul>
<li><a href="https://creativecommons.org/">Creative Commons</a></li>
<li><a href="http://creativecommons.pt/">Creative Commons Portugal</a></li>
<li><a href="https://www.creativecommons.org.py/">Creative Commons Paraguay</a></li>
<li><a href="http://jplusplus.org/pt/">Journalism++</a></li>
<li><a href="https://creativecommons.org/licenses/by/4.0/">Attribution 4.0 International (CC BY 4.0)</a></li>
</ul>
</div>
</div>
<div class="row mobile">
<p><?= $word_by ?><br><a href="https://creativecommons.org/">Creative Commons</a></p>
<p><?= $word_coordination ?><br><a href="http://creativecommons.pt/">Creative Commons Portugal</a></p>
<p><?= $word_spanish_credits ?><br><a href="https://www.creativecommons.org.py/">Creative Commons Paraguay</a></p>
<p><?= $word_design_dev ?><br><a href="http://jplusplus.org/pt/">Journalism++</a></p>
<p><?= $word_licensed ?><br><a href="https://creativecommons.org/licenses/by/4.0/">Attribution 4.0 International (CC BY 4.0)</a></p>
</div>
</footer>
</div><!-- / end of global container -->
</div>
</body>
</html>