added timezone

This commit is contained in:
Lynne Megido 2021-05-02 18:51:24 +10:00
parent 1e5bb2728f
commit a29bf8d940
Signed by: lynnesbian
GPG Key ID: F0A184B5213D9F90
5 changed files with 50 additions and 0 deletions

View File

@ -8,6 +8,7 @@
<excludeFolder url="file://$MODULE_DIR$/_site" />
<excludeFolder url="file://$MODULE_DIR$/.jekyll-cache" />
<excludeFolder url="file://$MODULE_DIR$/vendor" />
<excludePattern pattern="retro.html" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />

19
LICENSE Normal file
View File

@ -0,0 +1,19 @@
Copyright (c) 2021 Lynnesbian
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

23
README.md Normal file
View File

@ -0,0 +1,23 @@
lynnesbian.space
---
This is the Jekyll site directory for [lynnesbian.space](https://lynnesbian.space). I can't really see anyone getting
much use out of the source for the website, but there's not really a reason *not* to publish it, so whatever.
## Licensing
This is gonna get complicated, but here goes:
- The provided HTML, JavaScript, and CSS files are licensed under the Expat license (aka the "MIT license").
- `favicon.ico` and `favicon.png` are both CC-BY-SA.
- All files in the `/_data` and `/_projects` directories are CC-BY-SA.
- All other files are Expat licensed.
- If files seem to be licensed under two licenses (my bad), assume Expat.
In other words: You can use the JavaScript, HTML, and CSS content of this website without attribution (although I would
prefer it if you did provide attribution). You can also do whatever you want with the files in `/_data` and
`/_projects`, but you must provide attribution for these files, and any derivative works made with them must also be
CC-BY-SA licensed.
### Links to licenses used
- [CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/legalcode)
- [Expat](https://spdx.org/licenses/MIT.html#licenseText)

View File

@ -26,4 +26,7 @@ custom_heading: true
<p>
I host a few small <a href="https://apt.bune.city">apt repository mirrors</a> on this server, along with
<a href="https://git.bune.city">my Gitea instance</a>.
</p>
<p>
I live in Queensland, Australia, meaning that my timezone is AEST, or UTC+1000.
</p>

View File

@ -1,3 +1,5 @@
// @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt Expat license
function dgel(id) {
return document.getElementById(id);
}
@ -8,3 +10,5 @@ window.addEventListener('DOMContentLoaded', (_) => {
document.getElementsByTagName('header')[0].classList.toggle('active');
};
});
// @license-end