Compare commits

...

4 Commits

Author SHA1 Message Date
6ff4742446 OrcasHub: Add updating instructions to the readme 2025-04-12 20:34:42 -07:00
437263fe53 OrcasHub: Add footer links
Requires css styles from the userall.css file
2025-04-12 20:33:43 -07:00
23c0a22f06 Orcashub: Add custom html pages 2025-04-11 19:59:41 -07:00
ff77e34f37 OrcasHub: Tweak page title format 2025-04-11 19:28:07 -07:00
6 changed files with 134 additions and 1 deletions

View File

@ -2,6 +2,11 @@
![screenshot](https://github.com/nomadjimbob/mikio/blob/main/images/screenshot.png)
## OrcasHub Updating Instructions
All customizations are in the checked in git repository. To update, download the zip or tar from the repo,
and extract over the template directory on the webserver.
## About
`Mikio` is a Bootstrap 4 style template for [DokuWiki](http://dokuwiki.org)

67
footer.html Normal file
View File

@ -0,0 +1,67 @@
<footer>
<div class="outer-container">
<div class="outer-grid">
<div class="inner-grid">
<div>
<h3>Classifieds</h3>
<ul>
<li><a href="https://orcashub.org/classified/for-sale">For Sale</a></li>
<li><a href="https://orcashub.org/classified/for-free">For Free</a></li>
<li><a href="https://orcashub.org/classified/want-to-buy">Looking For</a></li>
<li><a href="https://orcashub.org/classified/want-to-borrow">Want to Borrow</a></li>
<li><a href="https://orcashub.org/classified/new">New Post</a></li>
</ul>
</div>
<div class="inner-grid-second-row">
<h3>Housing</h3>
<ul>
<li><a href="https://orcashub.org/housing">For Rent</a></li>
<li><a href="https://orcashub.org/housing">Requests</a></li>
<li><a href="https://orcashub.org/housing/new">New Post</a></li>
</ul>
</div>
</div>
<div class="inner-grid">
<div>
<h3>Other Services</h3>
<ul>
<li><a href="https://groups.orcashub.org" target="_blank">Groups</a></li>
<li><a href="https://orcashub.org/events">Events</a></li>
<li><a href="/" target="_blank">Resources</a></li>
</ul>
</div>
<div class="inner-grid-second-row">
<h3>About</h3>
<ul>
<li><a href="https://orcashub.org/faq">FAQ</a></li>
<li><a href="https://orcashub.org/terms-of-service">Terms of Service</a></li>
<li><a href="https://orcashub.org/privacy-policy">Privacy Policy</a></li>
<li><a href="https://orcashub.org/donate">Donate</a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script>
function docReady(fn) {
// see if DOM is already available
if (document.readyState === "complete" || document.readyState === "interactive") {
// call on next available tick
setTimeout(fn, 1);
} else {
document.addEventListener("DOMContentLoaded", fn);
}
}
docReady(function() {
//const classes = document.querySelector('#dw__toc .toggle').classList;
//classes.remove('open');
//classes.add('closed');
setTimeout(() => {
// Close the table of contents.
//jQuery('#dw__toc .toggle').trigger('click')
}, 100);
});
</script>

27
images/logo.svg Executable file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 18 KiB

1
images/pencil.svg Executable file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#CCC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"/><path d="m15 5 4 4"/></svg>

After

Width:  |  Height:  |  Size: 341 B

View File

@ -2298,7 +2298,7 @@ data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">' .
}
$html = strip_tags($html);
$html = preg_replace('/\s+/', ' ', $html);
$html .= ' [' . strip_tags($conf['title']) . ']';
$html .= ' - ' . strip_tags($conf['title']);
return trim($html);
}

33
topheader.html Normal file

File diff suppressed because one or more lines are too long