├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── archetypes ├── default.md └── posts.md ├── assets ├── app.css ├── app.js ├── syntax-dark.css ├── syntax-light.css └── type.css ├── data ├── .keep └── services.toml ├── i18n ├── en.toml └── ru.toml ├── images ├── example.png ├── screenshot.png └── tn.png ├── layouts ├── 404.html ├── _default │ ├── baseof.html │ ├── section.html │ ├── single.html │ ├── summary.html │ ├── taxonomy.html │ └── terms.html ├── chromeless │ ├── baseof.html │ └── single.html ├── home.html ├── index.atom ├── page │ └── single.html ├── partials │ ├── alert.html │ ├── author-data.html │ ├── author.html │ ├── bundle-js-preload.html │ ├── bundle-js.html │ ├── button.html │ ├── cdn-src.html │ ├── disqus.html │ ├── facebook-pixel.html │ ├── feature.html │ ├── figure.html │ ├── footer.html │ ├── google-adsense-ad-slot.html │ ├── google-adsense.html │ ├── google-analytics.html │ ├── google-tag-manager-body.html │ ├── google-tag-manager-head.html │ ├── header.html │ ├── meta-subtitle.html │ ├── meta-summary.html │ ├── meta-theme.html │ ├── paginator.html │ ├── recent-pages.html │ ├── share.html │ ├── social-li.html │ ├── structured-data.html │ ├── styles-app.html │ ├── styles-type.html │ ├── svg │ │ ├── avatar.svg │ │ ├── close.svg │ │ ├── download.svg │ │ ├── email.svg │ │ ├── facebook.svg │ │ ├── file.svg │ │ ├── github.svg │ │ ├── instagram.svg │ │ ├── linkedin.svg │ │ ├── menu.svg │ │ ├── pinterest.svg │ │ ├── search.svg │ │ ├── shopping-cart.svg │ │ ├── stackoverflow.svg │ │ ├── twitter.svg │ │ └── youtube.svg │ ├── term-cloud.html │ └── toc.html ├── robots.txt ├── shortcodes │ ├── alert.html │ ├── blockquote.html │ ├── blocks │ │ ├── justify.html │ │ └── section.html │ ├── button.html │ ├── cdn-url.html │ ├── figure.html │ ├── headless-resource.html │ ├── page-resource.html │ ├── partial.html │ ├── readfile.html │ ├── recent-pages.html │ ├── summary.html │ ├── svg.html │ └── term-cloud.html └── sitemap.xml ├── package-lock.json ├── package.json ├── postcss.config.js ├── src ├── alpine.min.js ├── cdata.css ├── code.css ├── global.css ├── index.css ├── index.js ├── index.min.js ├── syntax-dark.css ├── syntax-light.css ├── theme.css ├── tools.css └── type.css ├── tailwind.config.js └── theme.toml /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 2 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | CHANGELOG.md export-ignore 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | This document provides community guidelines for a respectful, productive, and collaborative place for any person who is willing to contribute to Axiom. It applies to all "collaborative space", which is defined as community communications channels (such as mailing lists, submitted patches, commit comments, etc.). 4 | 5 | - Participants will be tolerant of opposing views. 6 | - Participants must ensure that their language and actions are free of personal attacks and disparaging personal remarks. 7 | - When interpreting the words and actions of others, participants should always assume good intentions. 8 | - Behavior which can be reasonably considered harassment will not be tolerated. 9 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thanks for your interest in contributing to Axiom! 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | github: [jhauraw] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-ShareAlike 4.0 International License (CC-BY-SA-4.0) 2 | 3 | Creative Commons Corporation ("Creative Commons") is not a law firm and 4 | does not provide legal services or legal advice. Distribution of 5 | Creative Commons public licenses does not create a lawyer-client or 6 | other relationship. Creative Commons makes its licenses and related 7 | information available on an "as-is" basis. Creative Commons gives no 8 | warranties regarding its licenses, any material licensed under their 9 | terms and conditions, or any related information. Creative Commons 10 | disclaims all liability for damages resulting from their use to the 11 | fullest extent possible. 12 | 13 | Using Creative Commons Public Licenses 14 | 15 | Creative Commons public licenses provide a standard set of terms and 16 | conditions that creators and other rights holders may use to share 17 | original works of authorship and other material subject to copyright 18 | and certain other rights specified in the public license below. The 19 | following considerations are for informational purposes only, are not 20 | exhaustive, and do not form part of our licenses. 21 | 22 | Considerations for licensors: Our public licenses are 23 | intended for use by those authorized to give the public 24 | permission to use material in ways otherwise restricted by 25 | copyright and certain other rights. Our licenses are 26 | irrevocable. Licensors should read and understand the terms 27 | and conditions of the license they choose before applying it. 28 | Licensors should also secure all rights necessary before 29 | applying our licenses so that the public can reuse the 30 | material as expected. Licensors should clearly mark any 31 | material not subject to the license. This includes other CC- 32 | licensed material, or material used under an exception or 33 | limitation to copyright. More considerations for licensors: 34 | wiki.creativecommons.org/Considerations_for_licensors 35 | 36 | Considerations for the public: By using one of our public 37 | licenses, a licensor grants the public permission to use the 38 | licensed material under specified terms and conditions. If 39 | the licensor's permission is not necessary for any reason--for 40 | example, because of any applicable exception or limitation to 41 | copyright--then that use is not regulated by the license. Our 42 | licenses grant only permissions under copyright and certain 43 | other rights that a licensor has authority to grant. Use of 44 | the licensed material may still be restricted for other 45 | reasons, including because others have copyright or other 46 | rights in the material. A licensor may make special requests, 47 | such as asking that all changes be marked or described. 48 | Although not required by our licenses, you are encouraged to 49 | respect those requests where reasonable. More considerations 50 | for the public: 51 | wiki.creativecommons.org/Considerations_for_licensees 52 | 53 | ======================================================================= 54 | 55 | Creative Commons Attribution-ShareAlike 4.0 International Public 56 | License 57 | 58 | By exercising the Licensed Rights (defined below), You accept and agree 59 | to be bound by the terms and conditions of this Creative Commons 60 | Attribution-ShareAlike 4.0 International Public License ("Public 61 | License"). To the extent this Public License may be interpreted as a 62 | contract, You are granted the Licensed Rights in consideration of Your 63 | acceptance of these terms and conditions, and the Licensor grants You 64 | such rights in consideration of benefits the Licensor receives from 65 | making the Licensed Material available under these terms and 66 | conditions. 67 | 68 | Section 1 -- Definitions. 69 | 70 | a. Adapted Material means material subject to Copyright and Similar 71 | Rights that is derived from or based upon the Licensed Material 72 | and in which the Licensed Material is translated, altered, 73 | arranged, transformed, or otherwise modified in a manner requiring 74 | permission under the Copyright and Similar Rights held by the 75 | Licensor. For purposes of this Public License, where the Licensed 76 | Material is a musical work, performance, or sound recording, 77 | Adapted Material is always produced where the Licensed Material is 78 | synched in timed relation with a moving image. 79 | 80 | b. Adapter's License means the license You apply to Your Copyright 81 | and Similar Rights in Your contributions to Adapted Material in 82 | accordance with the terms and conditions of this Public License. 83 | 84 | c. BY-SA Compatible License means a license listed at 85 | creativecommons.org/compatiblelicenses, approved by Creative 86 | Commons as essentially the equivalent of this Public License. 87 | 88 | d. Copyright and Similar Rights means copyright and/or similar rights 89 | closely related to copyright including, without limitation, 90 | performance, broadcast, sound recording, and Sui Generis Database 91 | Rights, without regard to how the rights are labeled or 92 | categorized. For purposes of this Public License, the rights 93 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 94 | Rights. 95 | 96 | e. Effective Technological Measures means those measures that, in the 97 | absence of proper authority, may not be circumvented under laws 98 | fulfilling obligations under Article 11 of the WIPO Copyright 99 | Treaty adopted on December 20, 1996, and/or similar international 100 | agreements. 101 | 102 | f. Exceptions and Limitations means fair use, fair dealing, and/or 103 | any other exception or limitation to Copyright and Similar Rights 104 | that applies to Your use of the Licensed Material. 105 | 106 | g. License Elements means the license attributes listed in the name 107 | of a Creative Commons Public License. The License Elements of this 108 | Public License are Attribution and ShareAlike. 109 | 110 | h. Licensed Material means the artistic or literary work, database, 111 | or other material to which the Licensor applied this Public 112 | License. 113 | 114 | i. Licensed Rights means the rights granted to You subject to the 115 | terms and conditions of this Public License, which are limited to 116 | all Copyright and Similar Rights that apply to Your use of the 117 | Licensed Material and that the Licensor has authority to license. 118 | 119 | j. Licensor means the individual(s) or entity(ies) granting rights 120 | under this Public License. 121 | 122 | k. Share means to provide material to the public by any means or 123 | process that requires permission under the Licensed Rights, such 124 | as reproduction, public display, public performance, distribution, 125 | dissemination, communication, or importation, and to make material 126 | available to the public including in ways that members of the 127 | public may access the material from a place and at a time 128 | individually chosen by them. 129 | 130 | l. Sui Generis Database Rights means rights other than copyright 131 | resulting from Directive 96/9/EC of the European Parliament and of 132 | the Council of 11 March 1996 on the legal protection of databases, 133 | as amended and/or succeeded, as well as other essentially 134 | equivalent rights anywhere in the world. 135 | 136 | m. You means the individual or entity exercising the Licensed Rights 137 | under this Public License. Your has a corresponding meaning. 138 | 139 | Section 2 -- Scope. 140 | 141 | a. License grant. 142 | 143 | 1. Subject to the terms and conditions of this Public License, 144 | the Licensor hereby grants You a worldwide, royalty-free, 145 | non-sublicensable, non-exclusive, irrevocable license to 146 | exercise the Licensed Rights in the Licensed Material to: 147 | 148 | a. reproduce and Share the Licensed Material, in whole or 149 | in part; and 150 | 151 | b. produce, reproduce, and Share Adapted Material. 152 | 153 | 2. Exceptions and Limitations. For the avoidance of doubt, where 154 | Exceptions and Limitations apply to Your use, this Public 155 | License does not apply, and You do not need to comply with 156 | its terms and conditions. 157 | 158 | 3. Term. The term of this Public License is specified in Section 159 | 6(a). 160 | 161 | 4. Media and formats; technical modifications allowed. The 162 | Licensor authorizes You to exercise the Licensed Rights in 163 | all media and formats whether now known or hereafter created, 164 | and to make technical modifications necessary to do so. The 165 | Licensor waives and/or agrees not to assert any right or 166 | authority to forbid You from making technical modifications 167 | necessary to exercise the Licensed Rights, including 168 | technical modifications necessary to circumvent Effective 169 | Technological Measures. For purposes of this Public License, 170 | simply making modifications authorized by this Section 2(a) 171 | (4) never produces Adapted Material. 172 | 173 | 5. Downstream recipients. 174 | 175 | a. Offer from the Licensor -- Licensed Material. Every 176 | recipient of the Licensed Material automatically 177 | receives an offer from the Licensor to exercise the 178 | Licensed Rights under the terms and conditions of this 179 | Public License. 180 | 181 | b. Additional offer from the Licensor -- Adapted Material. 182 | Every recipient of Adapted Material from You 183 | automatically receives an offer from the Licensor to 184 | exercise the Licensed Rights in the Adapted Material 185 | under the conditions of the Adapter's License You apply. 186 | 187 | c. No downstream restrictions. You may not offer or impose 188 | any additional or different terms or conditions on, or 189 | apply any Effective Technological Measures to, the 190 | Licensed Material if doing so restricts exercise of the 191 | Licensed Rights by any recipient of the Licensed 192 | Material. 193 | 194 | 6. No endorsement. Nothing in this Public License constitutes or 195 | may be construed as permission to assert or imply that You 196 | are, or that Your use of the Licensed Material is, connected 197 | with, or sponsored, endorsed, or granted official status by, 198 | the Licensor or others designated to receive attribution as 199 | provided in Section 3(a)(1)(A)(i). 200 | 201 | b. Other rights. 202 | 203 | 1. Moral rights, such as the right of integrity, are not 204 | licensed under this Public License, nor are publicity, 205 | privacy, and/or other similar personality rights; however, to 206 | the extent possible, the Licensor waives and/or agrees not to 207 | assert any such rights held by the Licensor to the limited 208 | extent necessary to allow You to exercise the Licensed 209 | Rights, but not otherwise. 210 | 211 | 2. Patent and trademark rights are not licensed under this 212 | Public License. 213 | 214 | 3. To the extent possible, the Licensor waives any right to 215 | collect royalties from You for the exercise of the Licensed 216 | Rights, whether directly or through a collecting society 217 | under any voluntary or waivable statutory or compulsory 218 | licensing scheme. In all other cases the Licensor expressly 219 | reserves any right to collect such royalties. 220 | 221 | Section 3 -- License Conditions. 222 | 223 | Your exercise of the Licensed Rights is expressly made subject to the 224 | following conditions. 225 | 226 | a. Attribution. 227 | 228 | 1. If You Share the Licensed Material (including in modified 229 | form), You must: 230 | 231 | a. retain the following if it is supplied by the Licensor 232 | with the Licensed Material: 233 | 234 | i. identification of the creator(s) of the Licensed 235 | Material and any others designated to receive 236 | attribution, in any reasonable manner requested by 237 | the Licensor (including by pseudonym if 238 | designated); 239 | 240 | ii. a copyright notice; 241 | 242 | iii. a notice that refers to this Public License; 243 | 244 | iv. a notice that refers to the disclaimer of 245 | warranties; 246 | 247 | v. a URI or hyperlink to the Licensed Material to the 248 | extent reasonably practicable; 249 | 250 | b. indicate if You modified the Licensed Material and 251 | retain an indication of any previous modifications; and 252 | 253 | c. indicate the Licensed Material is licensed under this 254 | Public License, and include the text of, or the URI or 255 | hyperlink to, this Public License. 256 | 257 | 2. You may satisfy the conditions in Section 3(a)(1) in any 258 | reasonable manner based on the medium, means, and context in 259 | which You Share the Licensed Material. For example, it may be 260 | reasonable to satisfy the conditions by providing a URI or 261 | hyperlink to a resource that includes the required 262 | information. 263 | 264 | 3. If requested by the Licensor, You must remove any of the 265 | information required by Section 3(a)(1)(A) to the extent 266 | reasonably practicable. 267 | 268 | b. ShareAlike. 269 | 270 | In addition to the conditions in Section 3(a), if You Share 271 | Adapted Material You produce, the following conditions also apply. 272 | 273 | 1. The Adapter's License You apply must be a Creative Commons 274 | license with the same License Elements, this version or 275 | later, or a BY-SA Compatible License. 276 | 277 | 2. You must include the text of, or the URI or hyperlink to, the 278 | Adapter's License You apply. You may satisfy this condition 279 | in any reasonable manner based on the medium, means, and 280 | context in which You Share Adapted Material. 281 | 282 | 3. You may not offer or impose any additional or different terms 283 | or conditions on, or apply any Effective Technological 284 | Measures to, Adapted Material that restrict exercise of the 285 | rights granted under the Adapter's License You apply. 286 | 287 | Section 4 -- Sui Generis Database Rights. 288 | 289 | Where the Licensed Rights include Sui Generis Database Rights that 290 | apply to Your use of the Licensed Material: 291 | 292 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 293 | to extract, reuse, reproduce, and Share all or a substantial 294 | portion of the contents of the database; 295 | 296 | b. if You include all or a substantial portion of the database 297 | contents in a database in which You have Sui Generis Database 298 | Rights, then the database in which You have Sui Generis Database 299 | Rights (but not its individual contents) is Adapted Material, 300 | 301 | including for purposes of Section 3(b); and 302 | c. You must comply with the conditions in Section 3(a) if You Share 303 | all or a substantial portion of the contents of the database. 304 | 305 | For the avoidance of doubt, this Section 4 supplements and does not 306 | replace Your obligations under this Public License where the Licensed 307 | Rights include other Copyright and Similar Rights. 308 | 309 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 310 | 311 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 312 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 313 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 314 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 315 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 316 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 317 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 318 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 319 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 320 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 321 | 322 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 323 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 324 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 325 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 326 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 327 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 328 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 329 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 330 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 331 | 332 | c. The disclaimer of warranties and limitation of liability provided 333 | above shall be interpreted in a manner that, to the extent 334 | possible, most closely approximates an absolute disclaimer and 335 | waiver of all liability. 336 | 337 | Section 6 -- Term and Termination. 338 | 339 | a. This Public License applies for the term of the Copyright and 340 | Similar Rights licensed here. However, if You fail to comply with 341 | this Public License, then Your rights under this Public License 342 | terminate automatically. 343 | 344 | b. Where Your right to use the Licensed Material has terminated under 345 | Section 6(a), it reinstates: 346 | 347 | 1. automatically as of the date the violation is cured, provided 348 | it is cured within 30 days of Your discovery of the 349 | violation; or 350 | 351 | 2. upon express reinstatement by the Licensor. 352 | 353 | For the avoidance of doubt, this Section 6(b) does not affect any 354 | right the Licensor may have to seek remedies for Your violations 355 | of this Public License. 356 | 357 | c. For the avoidance of doubt, the Licensor may also offer the 358 | Licensed Material under separate terms or conditions or stop 359 | distributing the Licensed Material at any time; however, doing so 360 | will not terminate this Public License. 361 | 362 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 363 | License. 364 | 365 | Section 7 -- Other Terms and Conditions. 366 | 367 | a. The Licensor shall not be bound by any additional or different 368 | terms or conditions communicated by You unless expressly agreed. 369 | 370 | b. Any arrangements, understandings, or agreements regarding the 371 | Licensed Material not stated herein are separate from and 372 | independent of the terms and conditions of this Public License. 373 | 374 | Section 8 -- Interpretation. 375 | 376 | a. For the avoidance of doubt, this Public License does not, and 377 | shall not be interpreted to, reduce, limit, restrict, or impose 378 | conditions on any use of the Licensed Material that could lawfully 379 | be made without permission under this Public License. 380 | 381 | b. To the extent possible, if any provision of this Public License is 382 | deemed unenforceable, it shall be automatically reformed to the 383 | minimum extent necessary to make it enforceable. If the provision 384 | cannot be reformed, it shall be severed from this Public License 385 | without affecting the enforceability of the remaining terms and 386 | conditions. 387 | 388 | c. No term or condition of this Public License will be waived and no 389 | failure to comply consented to unless expressly agreed to by the 390 | Licensor. 391 | 392 | d. Nothing in this Public License constitutes or may be interpreted 393 | as a limitation upon, or waiver of, any privileges and immunities 394 | that apply to the Licensor or You, including from the legal 395 | processes of any jurisdiction or authority. 396 | 397 | ======================================================================= 398 | 399 | Creative Commons is not a party to its public 400 | licenses. Notwithstanding, Creative Commons may elect to apply one of 401 | its public licenses to material it publishes and in those instances 402 | will be considered the “Licensor.” The text of the Creative Commons 403 | public licenses is dedicated to the public domain under the CC0 Public 404 | Domain Dedication. Except for the limited purpose of indicating that 405 | material is shared under a Creative Commons public license or as 406 | otherwise permitted by the Creative Commons policies published at 407 | creativecommons.org/policies, Creative Commons does not authorize the 408 | use of the trademark "Creative Commons" or any other trademark or logo 409 | of Creative Commons without its prior written consent including, 410 | without limitation, in connection with any unauthorized modifications 411 | to any of its public licenses or any other arrangements, 412 | understandings, or agreements concerning use of licensed material. For 413 | the avoidance of doubt, this paragraph does not form part of the 414 | public licenses. 415 | 416 | Creative Commons may be contacted at creativecommons.org. 417 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Axiom - A Hugo Theme 2 | 3 | Axiom is designed to make the readers of your content and the search engines happy. Designed with a modular structure, and fully customizable in every way, Axiom adapts to your project, instead of forcing an opinionated structure. 4 | 5 | 🙌 Follow [Axiom](https://twitter.com/intent/follow?screen_name=axiomtheme) on Twitter to stay up-to-date with the latest news. 6 | 7 | ## Getting Started 8 | 9 | To learn more, see the Quick Start, Documentation, and Live Example resources below: 10 | 11 | - Axiom Resources: 12 | - [Quick Start](https://www.axiomtheme.com/docs/quick-start/) 13 | - [Documentation](https://www.axiomtheme.com/docs/) 14 | - [Live Example](https://axiom-example.netlify.app/) 15 | - Axiom Repositories: 16 | - [Axiom Theme](https://github.com/marketempower/axiom) 17 | - [Axiom Example](https://github.com/marketempower/axiom-example) 18 | 19 | ![Axiom Screenshot](https://github.com/marketempower/axiom/raw/master/images/example.png) 20 | 21 | # License 22 | 23 | Creative Commons Attribution-ShareAlike 4.0 International License: [CC-BY-SA-4.0](https://github.com/marketempower/axiom/blob/master/LICENSE). 24 | 25 | Copyright 2020 [Jhaura Wachsman](https://www.jhaurawachsman.com/) 26 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = {{ dateFormat "2006-01-02T15:00:00Z" now.UTC }} 3 | lastmod = {{ dateFormat "2006-01-02T15:00:00Z" now.UTC }} 4 | title = "{{ replace .TranslationBaseName "-" " " | title }}" 5 | subtitle = "Suggested 25 words / 125 chars. Used in metadata, and content summaries." 6 | feature = "{{ .Site.Params.image.default }}" 7 | caption = "Feature image caption and image alt text." 8 | +++ 9 | 10 | And go... 11 | -------------------------------------------------------------------------------- /archetypes/posts.md: -------------------------------------------------------------------------------- 1 | +++ 2 | date = {{ dateFormat "2006-01-02T15:00:00Z" now.UTC }} 3 | lastmod = {{ dateFormat "2006-01-02T15:00:00Z" now.UTC }} 4 | author = "default" 5 | title = "{{ replace .TranslationBaseName "-" " " | title }}" 6 | subtitle = "Suggested 25 words / 125 chars. Used in metadata, and content summaries." 7 | feature = "{{ .Site.Params.image.default }}" 8 | +++ 9 | 10 | And go... 11 | -------------------------------------------------------------------------------- /assets/app.css: -------------------------------------------------------------------------------- 1 | /*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com*/ 2 | 3 | /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{line-height:1.15;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:100%}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;margin:0}hr{color:inherit;height:0}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{border:0 solid;box-sizing:border-box}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:-moz-focusring{outline:auto}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{color:inherit;line-height:inherit;padding:0}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{border-color:#e5e7eb}.static{position:static}.absolute{position:absolute}.relative{position:relative}.float-right{float:right}.float-left{float:left}.m-1{margin:.25rem}.m-2{margin:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-auto{margin-left:auto;margin-right:auto}.mt-0{margin-top:0}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-3{margin-top:.75rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-6{margin-top:1.5rem}.mt-8{margin-top:2rem}.mt-9{margin-top:2.25rem}.mt-10{margin-top:2.5rem}.mt-12{margin-top:3rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mb-2{margin-bottom:.5rem}.mb-4{margin-bottom:1rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.first\:mt-0:first-child{margin-top:0}.first\:ml-0:first-child{margin-left:0}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.hidden{display:none}.h-4{height:1rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-12{height:3rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-12{width:3rem}.w-auto{width:auto}.min-w-0{min-width:0}.max-w-680{max-width:42.5rem}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-4xl{max-width:56rem}.max-w-5xl{max-width:64rem}.max-w-6xl{max-width:72rem}.flex-1{flex:1 1 0%}.flex-none{flex:none}.flex-shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.cursor-not-allowed{cursor:not-allowed}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded{border-radius:.25rem}.rounded-full{border-radius:9999px}.border{border-width:1px}.border-blue-300{border-color:#93c5fd}.border-raven-900{border-color:#1a1a1a}.bg-white{background-color:#fff}.bg-red-100{background-color:#fee2e2}.bg-red-500{background-color:#ef4444}.bg-yellow-100{background-color:#fef3c7}.bg-yellow-500{background-color:#f59e0b}.bg-blue-100{background-color:#dbeafe}.bg-blue-500{background-color:#3b82f6}.bg-raven-100{background-color:#e6e6e6}.bg-raven-500{background-color:grey}.hover\:bg-red-200:hover{background-color:#fecaca}.hover\:bg-yellow-200:hover{background-color:#fde68a}.hover\:bg-blue-200:hover{background-color:#bfdbfe}.hover\:bg-raven-100:hover{background-color:#e6e6e6}.hover\:bg-raven-200:hover{background-color:#ccc}.fill-current{fill:currentColor}.object-cover{-o-object-fit:cover;object-fit:cover}.p-2{padding:.5rem}.p-3px{padding:3px}.px-2{padding-left:.5rem;padding-right:.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-4{padding-bottom:1rem;padding-top:1rem}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.align-text-bottom{vertical-align:text-bottom}.font-sans{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-serif{font-family:ui-serif,Georgia,Cambria,Times New Roman,Times,serif}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-basic-sans{font-family:system-ui,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif}.font-content-sans{font-family:content-sans,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Arial,sans-serif}.font-content-serif{font-family:content-serif,ui-serif,Georgia,Cambria,Times New Roman,Times,serif}.font-content-title{font-family:content-title,ui-serif,Georgia,Cambria,Times New Roman,Times,serif}.text-40{font-size:2.5rem}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.font-light{font-weight:300}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.leading-none{line-height:1}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.leading-tighter{line-height:1.15}.tracking-normal{letter-spacing:0}.tracking-wide{letter-spacing:.025em}.tracking-default{letter-spacing:normal}.tracking-snug{letter-spacing:-.015em}.text-gray-400{color:#9ca3af}.text-gray-600{color:#4b5563}.text-red-100{color:#fee2e2}.text-red-700{color:#b91c1c}.text-yellow-100{color:#fef3c7}.text-yellow-700{color:#b45309}.text-blue-100{color:#dbeafe}.text-blue-600{color:#2563eb}.text-blue-700{color:#1d4ed8}.text-raven-100{color:#e6e6e6}.text-raven-500{color:grey}.text-raven-700{color:#4d4d4d}.text-raven-800{color:#333}.text-raven-900{color:#1a1a1a}.text-raven-900a{color:rgba(0,0,0,.84)}.hover\:text-gray-800:hover{color:#1f2937}.hover\:text-blue-800:hover{color:#1e40af}.hover\:text-raven-600:hover{color:#666}.hover\:text-raven-900:hover{color:#1a1a1a}.focus\:text-gray-800:focus{color:#1f2937}.focus\:underline:focus,.hover\:underline:hover{text-decoration:underline}*,:after,:before{--tw-shadow:0 0 #0000}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}*,:after,:before{--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000}@media (min-width:640px){.sm\:mx-8{margin-left:2rem;margin-right:2rem}.sm\:mt-0{margin-top:0}.sm\:mr-4{margin-right:1rem}.sm\:mr-8{margin-right:2rem}.sm\:mr-10{margin-right:2.5rem}.sm\:mb-0{margin-bottom:0}.sm\:ml-4{margin-left:1rem}.sm\:ml-8{margin-left:2rem}.sm\:flex{display:flex}.sm\:h-14{height:3.5rem}.sm\:h-40{height:10rem}.sm\:w-14{width:3.5rem}.sm\:w-40{width:10rem}.sm\:max-w-680{max-width:42.5rem}.sm\:max-w-2xl{max-width:42rem}.sm\:max-w-3xl{max-width:48rem}.sm\:max-w-4xl{max-width:56rem}.sm\:max-w-5xl{max-width:64rem}.sm\:max-w-6xl{max-width:72rem}.sm\:flex-shrink-0{flex-shrink:0}.sm\:flex-grow{flex-grow:1}.sm\:justify-center{justify-content:center}.sm\:text-xs{font-size:.75rem}}body{text-rendering:optimizelegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}a,button,input{-webkit-tap-highlight-color:transparent}[v-cloak],[x-cloak]{display:none}.ax-logo img,.ax-logo svg{height:1.75rem;width:auto}.ax-l-o{display:flex;justify-content:center}.ax-l-i{flex-grow:1;margin-left:1rem;margin-right:1rem;margin-top:2rem;min-width:0}.header{background-color:#fff;display:flex;justify-content:center;padding-bottom:1rem;padding-top:1rem;position:relative;--tw-shadow:0 4px 12px 0 rgba(0,0,0,.05);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.header>.ax-l-i{align-items:center;display:flex;margin-top:0}.header .cdata>:is(.header .cdata)>.ax-l-i{margin-top:0}.header .ax-logo{flex:1 1 0%}.header .ax-user{align-items:center;display:flex;margin-left:auto}.footer{background-color:#fff;border-color:#e5e7eb;border-top-width:1px;display:flex;justify-content:center;margin-top:2rem;padding-bottom:1.5rem;padding-top:1.5rem}.footer>.ax-l-i{margin-top:0}.footer .cdata>:is(.footer .cdata)>.ax-l-i{margin-top:0}.hr-fade{background-image:linear-gradient(270deg,transparent,rgba(0,0,0,.24),transparent);border:0;height:1px}@media (min-width:640px){.ax-logo img,.ax-logo svg{height:2rem}.ax-l-i{margin-left:2rem;margin-right:2rem}}.stretched-link:after{background-color:transparent;bottom:0;content:"";left:0;pointer-events:auto;position:absolute;right:0;top:0;z-index:1}.table-responsive{display:block;overflow-x:auto;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;scrollbar-width:none}.table-responsive::-webkit-scrollbar{display:none}.cdata{color:rgba(0,0,0,.84);overflow-wrap:break-word}.cdata>h1,.cdata>h2,.cdata>h3,.cdata>h4,.cdata>h5,.cdata>h6{font-family:content-sans,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Arial,sans-serif;font-weight:600;letter-spacing:-.025em;line-height:1.15}.cdata>h1{font-size:2.125rem}.cdata>h2{font-size:1.625rem}.cdata>h3{font-size:1.5rem}.cdata>h4,.cdata>h5,.cdata>h6{font-size:1.25rem}.cdata>blockquote p,.cdata>ol,.cdata>p,.cdata>ul{font-family:content-serif,ui-serif,Georgia,Cambria,Times New Roman,Times,serif;font-size:1.25rem;font-weight:400;letter-spacing:-.004em;line-height:1.6}.cdata>*+*{margin-top:2.25rem}.cdata>h1+*,.cdata>h2+*,.cdata>h3+*,.cdata>h4+*,.cdata>h5+*,.cdata>h6+*{margin-top:.75rem}.cdata>*+h1{margin-top:2.5rem}.cdata li>p+p,.cdata>blockquote>p+p{margin-top:2rem}.cdata>link,.cdata>script,.cdata>script:first-child+*,.cdata>script:first-child+style+*,.cdata>style,.cdata>style:first-child+*,.cdata>style:first-child+script+*{margin-top:0}.cdata .cdata>:is(.cdata .cdata)>link,.cdata .cdata>:is(.cdata .cdata)>script,.cdata .cdata>:is(.cdata .cdata)>style,:is(.cdata .cdata)>:is(.cdata .cdata)>script:first-child+*,:is(.cdata .cdata)>:is(.cdata .cdata)>script:first-child+style+*,:is(.cdata .cdata)>:is(.cdata .cdata)>style:first-child+*,:is(.cdata .cdata)>:is(.cdata .cdata)>style:first-child+script+*{margin-top:0}.cdata .link:link,.cdata .link:visited,.cdata>.footnotes a:link,.cdata>.footnotes a:visited,.cdata>.table-responsive>table a:link,.cdata>.table-responsive>table a:visited,.cdata>a:not([role=button]):link,.cdata>a:not([role=button]):visited,.cdata>blockquote a:link,.cdata>blockquote a:visited,.cdata>figure figcaption a:link,.cdata>figure figcaption a:visited,.cdata>ol li a:link,.cdata>ol li a:visited,.cdata>p a:link,.cdata>p a:visited,.cdata>table a:link,.cdata>table a:visited,.cdata>ul li a:link,.cdata>ul li a:visited{color:#007bff}.cdata .link:hover,.cdata>.footnotes a:hover,.cdata>.table-responsive>table a:hover,.cdata>a:not([role=button]):hover,.cdata>blockquote a:hover,.cdata>figure figcaption a:hover,.cdata>ol li a:hover,.cdata>p a:hover,.cdata>table a:hover,.cdata>ul li a:hover{color:#0056b3;text-decoration:underline}.cdata>blockquote{border-color:#b3b3b3;border-left-width:4px;padding-left:1.25rem}.cdata>blockquote p{color:#4d4d4d}.cdata>blockquote cite,.cdata>blockquote footer{color:grey;font-family:system-ui,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;font-size:1rem;line-height:1.5}.cdata>.footnotes>ol,.cdata>ol,.cdata>ol li ol,.cdata>ol li ul,.cdata>ul,.cdata>ul li ol,.cdata>ul li ul{padding-inline-start:1.875rem}.cdata>ol li ul,.cdata>ul,.cdata>ul li ul{list-style-type:disc}.cdata>.footnotes>ol,.cdata>ol,.cdata>ol li ol,.cdata>ul li ol{list-style-type:decimal}.cdata>hr{background-image:linear-gradient(270deg,transparent,rgba(0,0,0,.24),transparent);border:0;height:1px}.cdata>.table-responsive>table,.cdata>table{max-width:100%;width:100%}:is(.cdata>table,.cdata>.table-responsive>table) th{font-weight:600;text-align:inherit}:is(.cdata>table,.cdata>.table-responsive>table) td,:is(.cdata>table,.cdata>.table-responsive>table) th{border-color:#e6e6e6;border-top-width:1px;padding:.5rem;vertical-align:top}:is(.cdata>table,.cdata>.table-responsive>table) thead th{border-bottom-width:2px;border-color:#e6e6e6;vertical-align:bottom}:is(.cdata>table,.cdata>.table-responsive>table) tbody+tbody{border-color:#e6e6e6;border-top-width:2px}.cdata .footnotes{color:grey;font-size:.875rem}.cdata .footnotes>hr{margin-bottom:.5rem;margin-top:1.5rem}.cdata .footnotes .footnote-backref{visibility:hidden}.cdata .footnotes .footnote-backref:before{content:"\2191 \00A0";visibility:visible}.cdata>.lead{font-family:system-ui,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;font-size:1.5rem;font-weight:300;letter-spacing:normal;line-height:1.375}.cdata>.mt-0{margin-top:0}.cdata pre{border-radius:.25rem}.cdata pre>code{display:block;overflow:auto;overflow-wrap:normal;padding:1rem;white-space:pre;word-break:normal;-webkit-font-smoothing:auto;-moz-osx-font-smoothing:auto;-ms-overflow-style:-ms-autohiding-scrollbar;scrollbar-width:none}.cdata pre>code::-webkit-scrollbar{display:none}.cdata :not(pre)>code{border-radius:.125rem;padding:.1rem .25rem;vertical-align:baseline;white-space:normal}.cdata :not(pre)>code,.cdata pre>code{direction:ltr;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1rem;font-weight:400;-webkit-hyphens:none;hyphens:none;letter-spacing:normal;line-height:1.5;-moz-tab-size:2;-o-tab-size:2;tab-size:2;text-align:left;word-spacing:normal}.cdata .highlight code .ln{margin-right:1rem}@media (min-width:640px){.cdata :not(pre)>code,.cdata pre>code{font-size:.875rem}} -------------------------------------------------------------------------------- /assets/app.js: -------------------------------------------------------------------------------- 1 | /* alpine.js v2.8.0 */ 2 | !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e=e||self).Alpine=t()}(this,(function(){"use strict";function e(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function t(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,i)}return n}function n(n){for(var i=1;i tags. See https://github.com/alpinejs/alpine#${t}`):1!==e.content.childElementCount&&console.warn(`Alpine: