diff --git a/.gitignore b/.gitignore index 46283f4a1165d8804deb8cdb0970b590f4f5d8ce..feddc3797f44874bbdd9883ee34e2b501ec66290 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .vscode/ +.node-persist/ node_modules/ _site/ assets/css/styles.css diff --git a/_data/git.js b/_data/git.js index 7fa4dcf511e614883d1e1f278563403cb4887883..7235587eb493fee9114ae6928c619be9b264ec24 100644 --- a/_data/git.js +++ b/_data/git.js @@ -5,11 +5,14 @@ const _fetch = require('node-fetch'); const _jsyaml = require('js-yaml'); const { Client } = require('git-rest-wrapper'); -const _gitrest = new Client(/*{ +const _gitrest = new Client({ + cache: { + type: "disk" + }, tokens: { - 'github.com': process.env.GITHUB_TOKEN + "api.github.com": process.env.GITHUB_TOKEN } -}*/); +}); const _site = require("./meta.json"); const _projects = []; @@ -34,7 +37,7 @@ async function getRepoProject(repo) { // extract title from readme (if possible) let titleRegex = (/^[\w-., ]+/g).exec(readme); let title = id; - if (titleRegex) { + if (titleRegex && readme.includes("=====")) { title = titleRegex[0].trim(); } diff --git a/_data/meta.json b/_data/meta.json index 7af2af57cfbce564fcf18f1b90dc50e5d3846d90..e29e21fa6ee3704e6a52442d87c0b800f8e9883d 100644 --- a/_data/meta.json +++ b/_data/meta.json @@ -6,37 +6,48 @@ "links": { "twitter": "https://twitter.com/fennifith", "fediverse": "https://is.a.horrific.dev/@james", + "instagram": "https://www.instagram.com/fennifith", + "twitch": "https://twitch.tv/fennifith", + "keybase": "https://keybase.io/jafenn", "googleplay": "https://play.google.com/store/apps/dev?id=5937321955284727208", "telegram": "https://t.me/fennifith", - "linkedin": "https://www.linkedin.com/in/james-fenn-3390b8167/" + "linkedin": "https://www.linkedin.com/in/james-fenn-3390b8167/", + "github": "https://github.com/fennifith", + "git": "https://code.horrific.dev/james", + "bintray": "https://bintray.com/18jafenn90", + "liberapay": "https://liberapay.com/fennifith/", + "paypal": "https://paypal.me/fennifith" }, "categories": [{ + "id": "project-app", "title": "Apps & Websites", - "desc": "Published tools or products for a wide audience.", - "repos": [ - "metronome" - ] + "desc": "Published tools and products for a wide audience." },{ + "id": "project-tool", "title": "Tools & Libraries", - "desc": "Smaller projects used in other work, intended for myself and other developers.", - "repos": [ - "attribouter", - "dot.css", - "git-rest-wrapper" - ] + "desc": "Smaller projects used in other work, intended for myself and other developers." },{ + "id": "project-fun", "title": "Just for Fun", - "desc": "Weird tools or programs that have no real purpose.", - "repos": [] + "desc": "Weird tools or programs that have no real purpose." },{ + "id": "project-deprecated", "title": "Deprecated", - "desc": "Things I've stopped working on or no longer maintain.", - "repos": [] + "desc": "Things I've stopped working on or no longer maintain." }], "repos": [ "gitea@code.horrific.dev:james/metronome", - "github@github.com:fennifith/Attribouter", "gitea@code.horrific.dev:james/dot.css", - "gitea@code.horrific.dev:james/git-rest-wrapper" + "gitea@code.horrific.dev:james/git-rest-wrapper", + "gitea@code.horrific.dev:james/ktordocs", + "github@github.com:fennifith/Attribouter", + "github@github.com:fennifith/Alarmio", + "github@github.com:fennifith/declarativ", + "github@github.com:fennifith/mdjavadoc", + "github@github.com:fennifith/ExceptionalTraveler", + "github@github.com:fennifith/Status", + "github@github.com:fennifith/Scrurl", + "github@github.com:fennifith/ColorPickerDialog", + "github@github.com:fennifith/Crasher" ] } diff --git a/_includes/header.liquid b/_includes/header.liquid deleted file mode 100644 index 6ce4a75e92de22ec75fd272827489ab6b12c264f..0000000000000000000000000000000000000000 --- a/_includes/header.liquid +++ /dev/null @@ -1,21 +0,0 @@ - \ No newline at end of file diff --git a/_includes/layouts/base.liquid b/_includes/layouts/base.liquid index b7cf879a9263c6dc35b30878559154ae4883e735..271d179e16244b5e0f7e5e73587825cb8da07bdd 100644 --- a/_includes/layouts/base.liquid +++ b/_includes/layouts/base.liquid @@ -2,7 +2,6 @@ layout: default --- -{% include header.liquid %} {% include nav.liquid %} {{ content | safe }} diff --git a/_includes/layouts/blog.liquid b/_includes/layouts/blog.liquid index 12d8080baeedc96ef26cfbb20faa554789a6e676..3b00956f24263db8e7a73d76da519b0f48384ef1 100644 --- a/_includes/layouts/blog.liquid +++ b/_includes/layouts/blog.liquid @@ -1,7 +1,7 @@ --- layout: base --- -
+

{{ title }}

diff --git a/_includes/layouts/project.liquid b/_includes/layouts/project.liquid new file mode 100644 index 0000000000000000000000000000000000000000..7f75f8482f44bc55eddc1a2629d6833e24352700 --- /dev/null +++ b/_includes/layouts/project.liquid @@ -0,0 +1,88 @@ +--- +layout: base +--- + +{% assign project = git.projects | where: 'id', page.fileSlug | first %} + +

+
+

{{ project.title }}

+

{{ project.repo.description }}

+
+ + +
+
+
+
+
+
+ + people + Contributing + +
+ Interested in working with this project or volunteering to help? Get started here! +
+
+
+
+
+ + email + Contact Me + +
+ Have any questions or concerns? Don't hesitate to reach out! +
+
+
+
+
+
+ +{% if project.hasWiki %} +
+
+
+
+ book +
+
+
Looking for documentation?
+

Find helpful information about this project - tutorials, guides, and more!

+ Read the Wiki chevron_right +
+
+
+
+{% endif %} + +{% assign sections = content | split: '
' %} +{% for section in sections %} +
+
+ {{ section | safe }} +
+
+{% endfor %} diff --git a/assets/images/ic/mastodon.svg b/assets/images/ic/fediverse.svg similarity index 100% rename from assets/images/ic/mastodon.svg rename to assets/images/ic/fediverse.svg diff --git a/assets/images/ic/markdown-mark.png b/assets/images/ic/markdown-mark.png new file mode 100644 index 0000000000000000000000000000000000000000..da4bb71234f38840a6931cc74fddeba0a4c9fdda Binary files /dev/null and b/assets/images/ic/markdown-mark.png differ diff --git a/package.json b/package.json index c479f335a4f48daeca815604a35c9a8a39c4c76e..1750fb550f25b3d02836c29c2984f503509a44d1 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "bootstrap": "^4.3.1", "fs": "0.0.1-security", "git-clone": "^0.1.0", - "git-rest-wrapper": "0.0.7", + "git-rest-wrapper": "0.0.8", "js-yaml": "^3.14.0", "markdown-it": "^10.0.0", "markdown-it-anchor": "^5.2.5", diff --git a/pages/community.md b/pages/community.md index ff30e463f10a2dfd60b7162bf961c163f530505d..a9a4613f8caff3984837205316864a7b7f936402 100644 --- a/pages/community.md +++ b/pages/community.md @@ -15,7 +15,7 @@ For the most part, everyone working on these projects is motivated entirely by t I try to maintain my projects to meet the needs of all their users - as a result, most contributions will be accepted so long as they represent some kind of functional improvement. I'd much prefer to work together and resolve an issue than turn any genuine effort away. To that end, *if you need help with this process, have any questions or confusion, or want to get feedback before a contribution, please don't hesitate to [get in touch](/contact/)!* -For specific contributing instructions, please see the README and/or CONTRIBUTING.md file in the repository. +For more specific contributing instructions, please see the README and/or CONTRIBUTING.md file in the repository. ## Community diff --git a/pages/contact.md b/pages/contact.md index af2e979144dc5a8a0d99f13cb4140ae02d61c589..e0fd0f88fba9a5bb878805230405b3f542798b29 100644 --- a/pages/contact.md +++ b/pages/contact.md @@ -7,28 +7,17 @@ permalink: /contact/ # Contact Me -I have a [Discord server](https://discord.jfenn.me/) for general discussion about my projects. If you want to message me privately, you can contact me through any of the services below or send [an email](mailto:me@jfenn.me) to me@jfenn.me. To suggest improvements / report bugs in any of my projects, I would prefer that you create an issue in the project's repository (as it will save me time and allow others to enter the discussion), but feel free to contact me for any reason. +I have a [Discord server](https://discord.jfenn.me/) for general discussion about my projects. If you want to message me privately, you can contact me through any of the services below or send an email to [me@jfenn.me]((mailto:me@jfenn.me)). To suggest improvements / report bugs in any of my projects, I would prefer that you create an issue in the project's repository (as it will save me time and allow others to enter the discussion), but feel free to contact me for any reason. ### Links - - - Twitter - - - - - Fediverse - - - - - LinkedIn - - - - - Telegram +{% assign links = "Twitter Fediverse LinkedIn Telegram" | split: " " %} +{% for linkName in links %} +{% assign link = linkName | downcase %} + + + {{ linkName }} +{% endfor %}
diff --git a/pages/index.html b/pages/index.html index fcf038590231da45a6c7f933d3bf8e2a4b05c182..b63c3a9b97f49d1fe6ba2688b988f426d4c76285 100644 --- a/pages/index.html +++ b/pages/index.html @@ -20,21 +20,12 @@ permalink: / my resume here, along with a few ways to contact me.

- - - - - - - - - - - - - - + {% assign links = "twitter fediverse github linkedin" | split: " " %} + {% for link in links %} + + + {% endfor %}
diff --git a/pages/licenses.md b/pages/licenses.md new file mode 100644 index 0000000000000000000000000000000000000000..3ec07485949cc772c03b8cf82341586a933232e8 --- /dev/null +++ b/pages/licenses.md @@ -0,0 +1,279 @@ +--- +layout: page +permalink: /licenses/ +--- + +
+ +# Open Source Licenses + +This page lists all (I hope) of the open source projects that are used to create, update, and maintain my personal site. + +## [11ty](https://11ty.dev/) + +``` +MIT License + +Copyright (c) 2020 Zach Leatherman @zachleat + +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. +``` + +## [NodeJS](https://nodejs.org/) + +``` +Copyright Node.js contributors. All rights reserved. + +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. +``` + +## [then-request](https://github.com/then/then-request) + +A request library that returns promises. + +``` +Copyright (c) 2014 Forbes Lindesay + +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. +``` + +## [cheerio](https://github.com/cheeriojs/cheerio) + +A fast, flexible, and lean implementation of core jQuery designed specifically for the server. + +``` +MIT License + +Copyright (c) 2016 Matt Mueller + +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. +``` + +## [instant.page](https://github.com/instantpage/instant.page) + +A small library that preloads linked pages before a user clicks on them. + +``` +MIT License + +Copyright (C) 2019 Alexandre Dieulot + +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. +``` + +## [lozad.js](https://github.com/ApoorvSaxena/lozad.js) + +Highly performant, light and configurable lazy loader in pure JS with no dependencies for images, iframes and more, using the IntersectionObserver API. + +``` + +The MIT License (MIT) + +Copyright (c) 2017 Apoorv Saxena + +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. +``` + +## [git-clone](https://github.com/jaz303/git-clone) + +A NodeJS interface to clone a git repository via shell commands. + +``` +Copyright 2014 Jason Frame + +Permission to use, copy, modify, and/or distribute this software for any purpose +with or without fee is hereby granted, provided that the above copyright notice +and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD +TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN +NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER +IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN +CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +``` + +## [mdjavadoc](https://github.com/TheAndroidMaster/mdjavadoc) + +A script that generates markdown javadocs primarily for use in Jekyll and GitHub Pages. + +``` +MIT License + +Copyright (c) 2018 James Fenn + +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. +``` + +## [js-yaml](https://github.com/nodeca/js-yaml) + +An implementation of [YAML](http://yaml.org/), a human-friendly data serialization language, for JavaScript. + +``` +(The MIT License) + +Copyright (C) 2011-2015 by Vitaly Puzrin + +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. +``` + +## [Highlight.js](https://highlightjs.org/) + +Highlight.js is a syntax highlighter written in JavaScript. It works in the browser as well as on the server. It works with pretty much any markup, doesn’t depend on any framework, and has automatic language detection. + +``` +Copyright (c) 2006, Ivan Sagalaev +All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of highlight.js nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +``` + +
diff --git a/pages/links.njk b/pages/links.njk new file mode 100644 index 0000000000000000000000000000000000000000..b9bf14d7d2f232ef0cfc2b2a9b0269616cf1e396 --- /dev/null +++ b/pages/links.njk @@ -0,0 +1,23 @@ +--- +pagination: + data: meta.links + size: 1 +permalink: "links/{{ pagination.items[0] }}.html" +--- + + + + + +Redirecting… + +{% set link = meta.links[pagination.items[0]] %} + + + + + + +Redirecting to {{ link }}. + + diff --git a/pages/projects/index.html b/pages/projects/index.html index 1d9aea0f4f0aec3fad0e82b77f597fa9e79c5e9e..e3db31f5085da0e745a23d3670c182b19504ad49 100644 --- a/pages/projects/index.html +++ b/pages/projects/index.html @@ -24,9 +24,9 @@ permalink: /projects/

{{ category.title }}

{{ category.desc }}

- {% for repo in category.repos %} + {% for pg in collections[category.id] %}
- {% assign project = git.projects | where: 'id', repo | first %} + {% assign project = git.projects | where: 'id', pg.fileSlug | first %} {% include item/project.liquid, project: project %}
{% endfor %} diff --git a/pages/projects/project.html b/pages/projects/project.html index b50a1e47b572cfb5e092e9b8855321f8f66b7fa1..c503d136c482efe66e436f6c0937315532ad9370 100644 --- a/pages/projects/project.html +++ b/pages/projects/project.html @@ -3,7 +3,7 @@ layout: base pagination: data: git.projects size: 1 -permalink: "projects/{{ pagination.items[0].id }}/index.html" +permalink: "projects2/{{ pagination.items[0].id }}/index.html" --- {% for project in pagination.items %} diff --git a/pages/projects/wiki.html b/pages/projects/wiki.html index eba40573875a39ef9d64ceb533c012a7769a4107..7383454dd6df08c8863ec59d5ab256ffa21df35e 100644 --- a/pages/projects/wiki.html +++ b/pages/projects/wiki.html @@ -1,31 +1,37 @@ --- -layout: page +layout: base pagination: data: git.wikis size: 1 permalink: "projects/{{ pagination.items[0].id }}/wiki/{{ pagination.items[0].page }}.html" --- -{% for wiki in pagination.items %} - - home - - - chevron_right - {{ wiki.project.title }} - - - chevron_right - Wiki - +
+ +
-{% if wiki.page == "index" %} -

{{ wiki.project.title }} Wiki

-{% else %} -

{{ wiki.title }}

-{% endif %} +
+ {% if wiki.page == "index" %} +

{{ wiki.project.title }} Wiki

+ {% else %} +

{{ wiki.title }}

+ {% endif %} -
- {{ wiki.content | markdownify }} +
+ {{ wiki.content | markdownify }} +
+ {% endfor %}
-{% endfor %} diff --git a/projects/alarmio.html b/projects/alarmio.html new file mode 100644 index 0000000000000000000000000000000000000000..0f0988d841a8f22b5fdd468cd115ee269070fe64 --- /dev/null +++ b/projects/alarmio.html @@ -0,0 +1,8 @@ +--- +layout: layouts/project +tags: project-app +--- + +Hello + + diff --git a/projects/attribouter.html b/projects/attribouter.html new file mode 100644 index 0000000000000000000000000000000000000000..a3cb75fc69fcfa6826c061f609c8248d4198ff1c --- /dev/null +++ b/projects/attribouter.html @@ -0,0 +1,60 @@ +--- +layout: layouts/project +tags: project-tool +--- + +
+
+ +
+
+ +
+
+

Contributor Profiles

+

Automatically fetches profile information to provide the most recent content - powered by git-rest-wrapper.

+
+
+ +
+ +
+
+ +
+
+ +
+
+

License Information

+

Uses the GitHub Licenses API to provide complete license information about the application's dependencies.

+
+
+ +
+ +
+
+ +
+
+ +
+
+

Night Theme

+

Adapts to the user's Dark Mode settings to present a consistent experience across the device.

+
+
+ +
+ +
+
+ +
+
+

Special thanks to Kevin Aguilar and 221 Pixels for helping improve the libary's design/interface and creating the awesome logo!

+
+
+ + diff --git a/projects/colorpickerdialog.html b/projects/colorpickerdialog.html new file mode 100644 index 0000000000000000000000000000000000000000..bb3b7bb6f4945f14a4528b17b4a06effdafa871c --- /dev/null +++ b/projects/colorpickerdialog.html @@ -0,0 +1,6 @@ +--- +layout: layouts/project +tags: project-tool +--- + +Hello diff --git a/projects/crasher.html b/projects/crasher.html new file mode 100644 index 0000000000000000000000000000000000000000..bb3b7bb6f4945f14a4528b17b4a06effdafa871c --- /dev/null +++ b/projects/crasher.html @@ -0,0 +1,6 @@ +--- +layout: layouts/project +tags: project-tool +--- + +Hello diff --git a/projects/declarativ.html b/projects/declarativ.html new file mode 100644 index 0000000000000000000000000000000000000000..65673895e7009f83abb3b40fcbfa6509113e17cf --- /dev/null +++ b/projects/declarativ.html @@ -0,0 +1,8 @@ +--- +layout: layouts/project +tags: project-fun +--- + +Hello + + diff --git a/projects/dot.css.html b/projects/dot.css.html new file mode 100644 index 0000000000000000000000000000000000000000..a743ad7069014225ccdb0d82ba6c255013827587 --- /dev/null +++ b/projects/dot.css.html @@ -0,0 +1,8 @@ +--- +layout: layouts/project +tags: project-tool +--- + +Hello + + diff --git a/projects/exceptionaltraveler.html b/projects/exceptionaltraveler.html new file mode 100644 index 0000000000000000000000000000000000000000..65673895e7009f83abb3b40fcbfa6509113e17cf --- /dev/null +++ b/projects/exceptionaltraveler.html @@ -0,0 +1,8 @@ +--- +layout: layouts/project +tags: project-fun +--- + +Hello + + diff --git a/projects/git-rest-wrapper.html b/projects/git-rest-wrapper.html new file mode 100644 index 0000000000000000000000000000000000000000..7d868c483be204dc3d12593566b23b8f14848d2b --- /dev/null +++ b/projects/git-rest-wrapper.html @@ -0,0 +1,42 @@ +--- +layout: layouts/project +tags: project-tool +--- + +
+ devices +

Multi-platform support

+

Written in Kotlin, the library has seamless compatibility with JavaScript, NodeJS, JVM, and Android platforms.

+
+ +
+ +
+
+
{
+    "id": "user",
+	"name": "User Human",
+	"url": "https://code.horrific.dev/user",
+	"avatarUrl": "https://example.com/photo.png",
+	"websiteUrl": "https://example.com"
+}
+
+
+

Consistent data representation

+

Information from multiple git hosting providers is standardized as a single, consistent data model.

+
+
+ +
+ +
+
+ offline_bolt +
+
+

Built-in caching & fallback behavior

+

Provides extensible in-memory and "disk" / localStorage-based caching implementations.

+
+
+ + diff --git a/projects/ktordocs.html b/projects/ktordocs.html new file mode 100644 index 0000000000000000000000000000000000000000..c0868a29b8779d99024ed91fbe3d596722f5d1a2 --- /dev/null +++ b/projects/ktordocs.html @@ -0,0 +1,43 @@ +--- +layout: layouts/project +tags: project-tool +--- + +
+ +

Automated Documentation

+

Provide comprehensive API documentation with minimal effort!

+
+ +
+ +
+
+
get("/api/v1/example") {
+    docs {
+        title = "Hello World"
+        desc = "Says hello to the world."
+    }
+
+    call.respondText("Hello world!")
+}
+
+
+

Minimal API

+

Inline documentation helps to explain your code and ensure consistency with the implementation.

+
+
+ +
+ +
+
+ +
+
+

Markdown Support

+

Uses the commonmark-java implementation to render any markdown syntax.

+
+
+ + diff --git a/projects/metronome.html b/projects/metronome.html new file mode 100644 index 0000000000000000000000000000000000000000..0f0988d841a8f22b5fdd468cd115ee269070fe64 --- /dev/null +++ b/projects/metronome.html @@ -0,0 +1,8 @@ +--- +layout: layouts/project +tags: project-app +--- + +Hello + + diff --git a/projects/scrurl.html b/projects/scrurl.html new file mode 100644 index 0000000000000000000000000000000000000000..162d1248822b266fa80e8ae2c4b4804ac73a24b3 --- /dev/null +++ b/projects/scrurl.html @@ -0,0 +1,6 @@ +--- +layout: layouts/project +tags: project-fun +--- + +Hello diff --git a/projects/status.html b/projects/status.html new file mode 100644 index 0000000000000000000000000000000000000000..0f2e1bc01c64bdd0bcf8bf8f2b5c350971c12f48 --- /dev/null +++ b/projects/status.html @@ -0,0 +1,6 @@ +--- +layout: layouts/project +tags: project-deprecated +--- + +Hello