copy update

This commit is contained in:
Joey Kimsey
2026-09-12 19:04:45 -04:00
parent 7634219706
commit 6e42b1012d
3 changed files with 3 additions and 5 deletions

View File

@ -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

View File

@ -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>
&copy; <span id="footer-year"></span>
<span id="footer-sitename">Capsule</span>, Powered by
&copy; <span id="footer-year"></span>, Powered by
<a
href="https://thetempusproject.com"
class="text-decoration-none"

View File

@ -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)