copy update
This commit is contained in:
@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
### Changed
|
||||
|
||||
- Footer upper band is Contact Us on the left, dark mode in the middle, and More Info on the right, in three equal columns. Contact and Report a Bug stay off the menu until the connected site says those plugins are accepting submissions.
|
||||
- Footer copyright no longer lists the connected hostname. It is year plus “Powered by The Tempus Project.”
|
||||
- Profile page: space the white panel below the main nav, and cap the avatar at 200×200.
|
||||
|
||||
### Fixed
|
||||
|
||||
@ -800,8 +800,7 @@
|
||||
<div class="d-flex flex-column flex-md-row justify-content-md-between py-3 border-top context-main-border">
|
||||
<div class="d-flex justify-content-center justify-content-md-start text-center text-md-start">
|
||||
<span>
|
||||
© <span id="footer-year"></span>
|
||||
<span id="footer-sitename">Capsule</span>, Powered by
|
||||
© <span id="footer-year"></span>, Powered by
|
||||
<a
|
||||
href="https://thetempusproject.com"
|
||||
class="text-decoration-none"
|
||||
|
||||
@ -577,9 +577,7 @@ function renderChrome() {
|
||||
*/
|
||||
function renderFooter() {
|
||||
document.getElementById('footer-year').textContent = String(new Date().getFullYear())
|
||||
const sitename = displaySiteName()
|
||||
document.getElementById('footer-sitename').textContent = sitename
|
||||
document.getElementById('contact-sitename').textContent = sitename
|
||||
document.getElementById('contact-sitename').textContent = displaySiteName()
|
||||
|
||||
document.querySelectorAll('[data-footer-path]').forEach((link) => {
|
||||
const href = siteHref(link.dataset.footerPath)
|
||||
|
||||
Reference in New Issue
Block a user