diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84012b2..e77f884 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,16 +16,13 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - name: Setup Node.js - uses: actions/setup-node@v1 - with: - node-version: 12.x + # - name: Setup Node.js + # uses: actions/setup-node@v1 + # with: + # node-version: 12.x - - name: Install dependencies - run: npm install - - - name: Compile assets - run: make + # - name: Install dependencies + # run: npm install - name: Build uses: TonySpegel/zola-build-action@v1 diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 16aba40..9167a93 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -23,14 +23,6 @@ "--open" ], "problemMatcher": [] - }, - { - "label": "Compile assets", - "type": "shell", - "command": "make", - "args": [ - ], - "problemMatcher": [] } ] } \ No newline at end of file diff --git a/Makefile b/Makefile deleted file mode 100644 index f2f33e8..0000000 --- a/Makefile +++ /dev/null @@ -1,35 +0,0 @@ - -static/dist: static/dist/line-awesome/svg static/dist/github-markdown-css/github-markdown-light.css static/dist/line-awesome/fonts/la-solid-900.woff2 - -static/dist/line-awesome/svg: static/dist/line-awesome/svg/envelope.svg static/dist/line-awesome/svg/github.svg static/dist/line-awesome/svg/linkedin.svg static/dist/line-awesome/svg/ellipsis-h-solid.svg - -static/dist/line-awesome/svg/envelope.svg: node_modules/line-awesome/svg/envelope.svg - mkdir -p $(dir $@) - cp $< $@ - -static/dist/line-awesome/svg/github.svg: node_modules/line-awesome/svg/github.svg - mkdir -p $(dir $@) - cp $< $@ - -static/dist/line-awesome/svg/linkedin.svg: node_modules/line-awesome/svg/linkedin.svg - mkdir -p $(dir $@) - cp $< $@ - -static/dist/line-awesome/fonts/la-solid-900.woff2: node_modules/line-awesome/dist/line-awesome/fonts/la-solid-900.woff2 - mkdir -p $(dir $@) - cp $< $@ - -static/dist/github-markdown-css/github-markdown-light.css: node_modules/github-markdown-css/github-markdown-light.css - @mkdir -p $(dir $@) - cp $< $@ - -static/dist/line-awesome/svg/ellipsis-h-solid.svg: node_modules/line-awesome/svg/ellipsis-h-solid.svg - mkdir -p $(dir $@) - cp $< $@ - -node_modules: - npm install - -public: sass content static static/dist templates jsonld_templates config.toml - zola build - cp -r static/dist public/dist \ No newline at end of file diff --git a/sass/styles/bootstrap.scss b/sass/styles/bootstrap.scss deleted file mode 100644 index 4e27d6d..0000000 --- a/sass/styles/bootstrap.scss +++ /dev/null @@ -1,19 +0,0 @@ -@import "../../node_modules/bootstrap/scss/functions"; // Required -@import "../../node_modules/bootstrap/scss/variables"; // Required -@import "../../node_modules/bootstrap/scss/mixins"; // Required -@import "../../node_modules/bootstrap/scss/maps"; // Required -// @import "../../node_modules/bootstrap/scss/utilities"; - -@import "../../node_modules/bootstrap/scss/root"; // Required -@import "../../node_modules/bootstrap/scss/reboot"; // Required - -@import "../../node_modules/bootstrap/scss/dropdown"; -@import "../../node_modules/bootstrap/scss/grid"; -@import "../../node_modules/bootstrap/scss/card"; - -// @import "../../node_modules/bootstrap/scss/helpers"; -// @import "../../node_modules/bootstrap/scss/utilities/api"; - -.mb-3 { - margin-bottom: 1rem !important; -} diff --git a/sass/styles/fonts.scss b/sass/styles/fonts.scss index d6e8766..7263e57 100644 --- a/sass/styles/fonts.scss +++ b/sass/styles/fonts.scss @@ -1,30 +1,14 @@ -@font-face { - font-family: "Urbanist"; - font-style: normal; -// font-weight: 700; - font-display: swap; - src: url("/dist/fonts/urbanist/Urbanist-VariableFont_wght.ttf") format("truetype"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, - U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, - U+FEFF, U+FFFD; -} +@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap'); -@font-face { - font-family: "Roboto"; - font-style: normal; - font-weight: 400; - font-display: swap; - src: url("/dist/fonts/roboto/Roboto-Regular.ttf") format("truetype"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, - U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, - U+FEFF, U+FFFD; -} +// @font-face { +// font-family: "Roboto"; +// font-style: normal; +// font-weight: 400; +// font-display: swap; +// src: url("/dist/fonts/roboto/Roboto-Regular.ttf") format("truetype"); +// unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, +// U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, +// U+FEFF, U+FFFD; +// } -@font-face { - font-family: 'Rubik'; - // font-style: italic; - // font-weight: 400; - font-display: swap; - src: url("/dist/fonts/rubik/Rubik-VariableFont_wght.ttf") format("truetype"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; - } \ No newline at end of file +@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap'); \ No newline at end of file diff --git a/sass/styles/icons.scss b/sass/styles/icons.scss deleted file mode 100644 index 504eb26..0000000 --- a/sass/styles/icons.scss +++ /dev/null @@ -1,3 +0,0 @@ -$la-font-path: "/dist/line-awesome/fonts"; - -@import "../../node_modules/line-awesome/dist/line-awesome/scss/line-awesome.scss"; \ No newline at end of file diff --git a/static/dist/.gitignore b/static/dist/.gitignore deleted file mode 100644 index 4796ae0..0000000 --- a/static/dist/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/line-awesome/ -/github-markdown-css/ \ No newline at end of file diff --git a/static/dist/fonts/roboto/LICENSE.txt b/static/dist/fonts/roboto/LICENSE.txt deleted file mode 100644 index 75b5248..0000000 --- a/static/dist/fonts/roboto/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/static/dist/fonts/roboto/Roboto-Black.ttf b/static/dist/fonts/roboto/Roboto-Black.ttf deleted file mode 100644 index 0112e7d..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Black.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-BlackItalic.ttf b/static/dist/fonts/roboto/Roboto-BlackItalic.ttf deleted file mode 100644 index b2c6aca..0000000 Binary files a/static/dist/fonts/roboto/Roboto-BlackItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Bold.ttf b/static/dist/fonts/roboto/Roboto-Bold.ttf deleted file mode 100644 index 43da14d..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Bold.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-BoldItalic.ttf b/static/dist/fonts/roboto/Roboto-BoldItalic.ttf deleted file mode 100644 index bcfdab4..0000000 Binary files a/static/dist/fonts/roboto/Roboto-BoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Italic.ttf b/static/dist/fonts/roboto/Roboto-Italic.ttf deleted file mode 100644 index 1b5eaa3..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Italic.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Light.ttf b/static/dist/fonts/roboto/Roboto-Light.ttf deleted file mode 100644 index e7307e7..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Light.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-LightItalic.ttf b/static/dist/fonts/roboto/Roboto-LightItalic.ttf deleted file mode 100644 index 2d277af..0000000 Binary files a/static/dist/fonts/roboto/Roboto-LightItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Medium.ttf b/static/dist/fonts/roboto/Roboto-Medium.ttf deleted file mode 100644 index ac0f908..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Medium.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-MediumItalic.ttf b/static/dist/fonts/roboto/Roboto-MediumItalic.ttf deleted file mode 100644 index fc36a47..0000000 Binary files a/static/dist/fonts/roboto/Roboto-MediumItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Regular.ttf b/static/dist/fonts/roboto/Roboto-Regular.ttf deleted file mode 100644 index ddf4bfa..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Regular.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-Thin.ttf b/static/dist/fonts/roboto/Roboto-Thin.ttf deleted file mode 100644 index 2e0dee6..0000000 Binary files a/static/dist/fonts/roboto/Roboto-Thin.ttf and /dev/null differ diff --git a/static/dist/fonts/roboto/Roboto-ThinItalic.ttf b/static/dist/fonts/roboto/Roboto-ThinItalic.ttf deleted file mode 100644 index 084f9c0..0000000 Binary files a/static/dist/fonts/roboto/Roboto-ThinItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/OFL.txt b/static/dist/fonts/rubik/OFL.txt deleted file mode 100644 index cdb3773..0000000 --- a/static/dist/fonts/rubik/OFL.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2015 The Rubik Project Authors (https://github.com/googlefonts/rubik) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/static/dist/fonts/rubik/README.txt b/static/dist/fonts/rubik/README.txt deleted file mode 100644 index c5792a2..0000000 --- a/static/dist/fonts/rubik/README.txt +++ /dev/null @@ -1,77 +0,0 @@ -Rubik Variable Font -=================== - -This download contains Rubik as both variable fonts and static fonts. - -Rubik is a variable font with this axis: - wght - -This means all the styles are contained in these files: - Rubik-VariableFont_wght.ttf - Rubik-Italic-VariableFont_wght.ttf - -If your app fully supports variable fonts, you can now pick intermediate styles -that aren’t available as static fonts. Not all apps support variable fonts, and -in those cases you can use the static font files for Rubik: - static/Rubik-Light.ttf - static/Rubik-Regular.ttf - static/Rubik-Medium.ttf - static/Rubik-SemiBold.ttf - static/Rubik-Bold.ttf - static/Rubik-ExtraBold.ttf - static/Rubik-Black.ttf - static/Rubik-LightItalic.ttf - static/Rubik-Italic.ttf - static/Rubik-MediumItalic.ttf - static/Rubik-SemiBoldItalic.ttf - static/Rubik-BoldItalic.ttf - static/Rubik-ExtraBoldItalic.ttf - static/Rubik-BlackItalic.ttf - -Get started ------------ - -1. Install the font files you want to use - -2. Use your app's font picker to view the font family and all the -available styles - -Learn more about variable fonts -------------------------------- - - https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts - https://variablefonts.typenetwork.com - https://medium.com/variable-fonts - -In desktop apps - - https://theblog.adobe.com/can-variable-fonts-illustrator-cc - https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts - -Online - - https://developers.google.com/fonts/docs/getting_started - https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide - https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts - -Installing fonts - - MacOS: https://support.apple.com/en-us/HT201749 - Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux - Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows - -Android Apps - - https://developers.google.com/fonts/docs/android - https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts - -License -------- -Please read the full license text (OFL.txt) to understand the permissions, -restrictions and requirements for usage, redistribution, and modification. - -You can use them in your products & projects – print or digital, -commercial or otherwise. - -This isn't legal advice, please consider consulting a lawyer and see the full -license for all details. diff --git a/static/dist/fonts/rubik/Rubik-Italic-VariableFont_wght.ttf b/static/dist/fonts/rubik/Rubik-Italic-VariableFont_wght.ttf deleted file mode 100644 index 7dda18e..0000000 Binary files a/static/dist/fonts/rubik/Rubik-Italic-VariableFont_wght.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/Rubik-VariableFont_wght.ttf b/static/dist/fonts/rubik/Rubik-VariableFont_wght.ttf deleted file mode 100644 index d2aed50..0000000 Binary files a/static/dist/fonts/rubik/Rubik-VariableFont_wght.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Black.ttf b/static/dist/fonts/rubik/static/Rubik-Black.ttf deleted file mode 100644 index ea47861..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Black.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-BlackItalic.ttf b/static/dist/fonts/rubik/static/Rubik-BlackItalic.ttf deleted file mode 100644 index 8eea2f2..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-BlackItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Bold.ttf b/static/dist/fonts/rubik/static/Rubik-Bold.ttf deleted file mode 100644 index 58408e0..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Bold.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-BoldItalic.ttf b/static/dist/fonts/rubik/static/Rubik-BoldItalic.ttf deleted file mode 100644 index ea8c448..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-BoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-ExtraBold.ttf b/static/dist/fonts/rubik/static/Rubik-ExtraBold.ttf deleted file mode 100644 index eb64373..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-ExtraBold.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-ExtraBoldItalic.ttf b/static/dist/fonts/rubik/static/Rubik-ExtraBoldItalic.ttf deleted file mode 100644 index 2f354a0..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-ExtraBoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Italic.ttf b/static/dist/fonts/rubik/static/Rubik-Italic.ttf deleted file mode 100644 index f403d4d..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Italic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Light.ttf b/static/dist/fonts/rubik/static/Rubik-Light.ttf deleted file mode 100644 index b899363..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Light.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-LightItalic.ttf b/static/dist/fonts/rubik/static/Rubik-LightItalic.ttf deleted file mode 100644 index 1ee2800..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-LightItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Medium.ttf b/static/dist/fonts/rubik/static/Rubik-Medium.ttf deleted file mode 100644 index 6e93c46..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Medium.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-MediumItalic.ttf b/static/dist/fonts/rubik/static/Rubik-MediumItalic.ttf deleted file mode 100644 index 24e6106..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-MediumItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-Regular.ttf b/static/dist/fonts/rubik/static/Rubik-Regular.ttf deleted file mode 100644 index 0e2a6f4..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-Regular.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-SemiBold.ttf b/static/dist/fonts/rubik/static/Rubik-SemiBold.ttf deleted file mode 100644 index 1bb751b..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-SemiBold.ttf and /dev/null differ diff --git a/static/dist/fonts/rubik/static/Rubik-SemiBoldItalic.ttf b/static/dist/fonts/rubik/static/Rubik-SemiBoldItalic.ttf deleted file mode 100644 index 5025554..0000000 Binary files a/static/dist/fonts/rubik/static/Rubik-SemiBoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/OFL.txt b/static/dist/fonts/urbanist/OFL.txt deleted file mode 100644 index 2d151ca..0000000 --- a/static/dist/fonts/urbanist/OFL.txt +++ /dev/null @@ -1,93 +0,0 @@ -Copyright 2021 The Urbanist Project Authors (https://github.com/coreyhu/Urbanist) - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/static/dist/fonts/urbanist/README.txt b/static/dist/fonts/urbanist/README.txt deleted file mode 100644 index 1be6749..0000000 --- a/static/dist/fonts/urbanist/README.txt +++ /dev/null @@ -1,81 +0,0 @@ -Urbanist Variable Font -====================== - -This download contains Urbanist as both variable fonts and static fonts. - -Urbanist is a variable font with this axis: - wght - -This means all the styles are contained in these files: - Urbanist-VariableFont_wght.ttf - Urbanist-Italic-VariableFont_wght.ttf - -If your app fully supports variable fonts, you can now pick intermediate styles -that aren’t available as static fonts. Not all apps support variable fonts, and -in those cases you can use the static font files for Urbanist: - static/Urbanist-Thin.ttf - static/Urbanist-ExtraLight.ttf - static/Urbanist-Light.ttf - static/Urbanist-Regular.ttf - static/Urbanist-Medium.ttf - static/Urbanist-SemiBold.ttf - static/Urbanist-Bold.ttf - static/Urbanist-ExtraBold.ttf - static/Urbanist-Black.ttf - static/Urbanist-ThinItalic.ttf - static/Urbanist-ExtraLightItalic.ttf - static/Urbanist-LightItalic.ttf - static/Urbanist-Italic.ttf - static/Urbanist-MediumItalic.ttf - static/Urbanist-SemiBoldItalic.ttf - static/Urbanist-BoldItalic.ttf - static/Urbanist-ExtraBoldItalic.ttf - static/Urbanist-BlackItalic.ttf - -Get started ------------ - -1. Install the font files you want to use - -2. Use your app's font picker to view the font family and all the -available styles - -Learn more about variable fonts -------------------------------- - - https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts - https://variablefonts.typenetwork.com - https://medium.com/variable-fonts - -In desktop apps - - https://theblog.adobe.com/can-variable-fonts-illustrator-cc - https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts - -Online - - https://developers.google.com/fonts/docs/getting_started - https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide - https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts - -Installing fonts - - MacOS: https://support.apple.com/en-us/HT201749 - Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux - Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows - -Android Apps - - https://developers.google.com/fonts/docs/android - https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts - -License -------- -Please read the full license text (OFL.txt) to understand the permissions, -restrictions and requirements for usage, redistribution, and modification. - -You can use them in your products & projects – print or digital, -commercial or otherwise. - -This isn't legal advice, please consider consulting a lawyer and see the full -license for all details. diff --git a/static/dist/fonts/urbanist/Urbanist-Italic-VariableFont_wght.ttf b/static/dist/fonts/urbanist/Urbanist-Italic-VariableFont_wght.ttf deleted file mode 100644 index 75198d1..0000000 Binary files a/static/dist/fonts/urbanist/Urbanist-Italic-VariableFont_wght.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/Urbanist-VariableFont_wght.ttf b/static/dist/fonts/urbanist/Urbanist-VariableFont_wght.ttf deleted file mode 100644 index e1dce17..0000000 Binary files a/static/dist/fonts/urbanist/Urbanist-VariableFont_wght.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Black.ttf b/static/dist/fonts/urbanist/static/Urbanist-Black.ttf deleted file mode 100644 index e790051..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Black.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-BlackItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-BlackItalic.ttf deleted file mode 100644 index 683393d..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-BlackItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Bold.ttf b/static/dist/fonts/urbanist/static/Urbanist-Bold.ttf deleted file mode 100644 index 2d4d9f6..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Bold.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-BoldItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-BoldItalic.ttf deleted file mode 100644 index a7a2cc4..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-BoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-ExtraBold.ttf b/static/dist/fonts/urbanist/static/Urbanist-ExtraBold.ttf deleted file mode 100644 index 3df46c2..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-ExtraBold.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-ExtraBoldItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-ExtraBoldItalic.ttf deleted file mode 100644 index 28ca78e..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-ExtraBoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-ExtraLight.ttf b/static/dist/fonts/urbanist/static/Urbanist-ExtraLight.ttf deleted file mode 100644 index bcb47cb..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-ExtraLight.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-ExtraLightItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-ExtraLightItalic.ttf deleted file mode 100644 index f4152c0..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-ExtraLightItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Italic.ttf b/static/dist/fonts/urbanist/static/Urbanist-Italic.ttf deleted file mode 100644 index 79f395f..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Italic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Light.ttf b/static/dist/fonts/urbanist/static/Urbanist-Light.ttf deleted file mode 100644 index 318e4b9..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Light.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-LightItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-LightItalic.ttf deleted file mode 100644 index 11244e4..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-LightItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Medium.ttf b/static/dist/fonts/urbanist/static/Urbanist-Medium.ttf deleted file mode 100644 index 194aa9b..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Medium.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-MediumItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-MediumItalic.ttf deleted file mode 100644 index af82ec0..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-MediumItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Regular.ttf b/static/dist/fonts/urbanist/static/Urbanist-Regular.ttf deleted file mode 100644 index e4199ed..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Regular.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-SemiBold.ttf b/static/dist/fonts/urbanist/static/Urbanist-SemiBold.ttf deleted file mode 100644 index cf9efc8..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-SemiBold.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-SemiBoldItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-SemiBoldItalic.ttf deleted file mode 100644 index 6b34d52..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-SemiBoldItalic.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-Thin.ttf b/static/dist/fonts/urbanist/static/Urbanist-Thin.ttf deleted file mode 100644 index 0f1f6f6..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-Thin.ttf and /dev/null differ diff --git a/static/dist/fonts/urbanist/static/Urbanist-ThinItalic.ttf b/static/dist/fonts/urbanist/static/Urbanist-ThinItalic.ttf deleted file mode 100644 index 6acd036..0000000 Binary files a/static/dist/fonts/urbanist/static/Urbanist-ThinItalic.ttf and /dev/null differ diff --git a/templates/base.html b/templates/base.html index 5307269..92bef9a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -31,8 +31,12 @@ {# Less important styles #} - - + + {# Component styles #} diff --git a/templates/components/about-card.html b/templates/components/about-card.html index 9860c55..8155ba8 100644 --- a/templates/components/about-card.html +++ b/templates/components/about-card.html @@ -16,25 +16,29 @@