-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathfooter.tpl
58 lines (53 loc) · 1.77 KB
/
footer.tpl
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
58
{**
* templates/frontend/components/footer.tpl
*
* Copyright (c) 2014-2020 Simon Fraser University
* Copyright (c) 2003-2020 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @brief Common site frontend footer.
*}
<footer class="site-footer">
<div class="container site-footer-sidebar" role="complementary"
aria-label="{translate|escape key="common.navigation.sidebar"}">
<div class="row">
{call_hook name="Templates::Common::Sidebar"}
</div>
</div>
<div class="container site-footer-content">
<div class="row">
{if $pageFooter}
<div class="col-md site-footer-content align-self-center">
{$pageFooter}
</div>
{/if}
<div class="col-md col-md-2 align-self-center text-right" role="complementary">
<a href="{url page="about" op="aboutThisPublishingSystem"}">
<img class="footer-brand-image" alt="{translate key="about.aboutThisPublishingSystem"}"
src="{$baseUrl}/{$brandImage}">
</a>
</div>
</div>
</div>
</footer><!-- pkp_structure_footer_wrapper -->
{* Load author biography modals if they exist *}
{if !empty($smarty.capture.authorBiographyModals|default:""|trim)}
{$smarty.capture.authorBiographyModals}
{/if}
{* Login modal *}
<div id="loginModal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-bs-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
{include file="frontend/components/loginForm.tpl" formType = "loginModal"}
</div>
</div>
</div>
</div>
{load_script context="frontend" scripts=$scripts}
{call_hook name="Templates::Common::Footer::PageFooter"}
</body>
</html>