-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from drgrice1/footer-adjustable-width
Make the footer width adjustable per page.
- Loading branch information
Showing
6 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
<div class="col-lg-10"> | ||
<div id="last-modified"><%= maketext('Page generated at [_1]', $c->timestamp) %></div> | ||
<div id="copyright"> | ||
<%== maketext( | ||
'WeBWorK © [_1] | theme: [_2] | ww_version: [_3] | pg_version [_4]', | ||
$ce->{WW_COPYRIGHT_YEARS} || '1996-2023', | ||
$ce->{defaultTheme} || 'unknown -- set defaultTheme in localOverides.conf', | ||
$ce->{WW_VERSION} || 'unknown -- set WW_VERSION in VERSION', | ||
$ce->{PG_VERSION} || 'unknown -- set PG_VERSION in ../pg/VERSION' | ||
) %> | ||
<div id="footer" role="contentinfo" class="row"> | ||
<div class="<%= $footerWidthClass %>"> | ||
<div id="last-modified"><%= maketext('Page generated at [_1]', $c->timestamp) %></div> | ||
<div id="copyright"> | ||
<%== maketext( | ||
'WeBWorK © [_1] | theme: [_2] | ww_version: [_3] | pg_version [_4]', | ||
$ce->{WW_COPYRIGHT_YEARS} || '1996-2023', | ||
$ce->{defaultTheme} || 'unknown -- set defaultTheme in localOverides.conf', | ||
$ce->{WW_VERSION} || 'unknown -- set WW_VERSION in VERSION', | ||
$ce->{PG_VERSION} || 'unknown -- set PG_VERSION in ../pg/VERSION' | ||
) %> | ||
</div> | ||
<a href="https://openwebwork.org/"><%= maketext('The WeBWorK Project') %></a> | ||
</div> | ||
<a href="https://openwebwork.org/"><%= maketext('The WeBWorK Project') %></a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters