├── .github
├── dependabot.yml
└── stale.yml
├── 404.php
├── 500.php
├── LICENSE
├── archive.php
├── assets
├── css
│ ├── default-width.css
│ ├── default-width.css.map
│ ├── editor-style.css
│ ├── editor-style.css.map
│ ├── narrow-width.css
│ ├── narrow-width.css.map
│ ├── print.css
│ ├── print.css.map
│ ├── wide-width.css
│ └── wide-width.css.map
├── font
│ ├── lato
│ │ ├── lato-v13-latin-300.eot
│ │ ├── lato-v13-latin-300.svg
│ │ ├── lato-v13-latin-300.woff
│ │ ├── lato-v13-latin-300.woff2
│ │ ├── lato-v13-latin-300italic.eot
│ │ ├── lato-v13-latin-300italic.svg
│ │ ├── lato-v13-latin-300italic.woff
│ │ ├── lato-v13-latin-300italic.woff2
│ │ ├── lato-v13-latin-700.eot
│ │ ├── lato-v13-latin-700.svg
│ │ ├── lato-v13-latin-700.woff
│ │ ├── lato-v13-latin-700.woff2
│ │ ├── lato-v13-latin-700italic.eot
│ │ ├── lato-v13-latin-700italic.svg
│ │ ├── lato-v13-latin-700italic.woff
│ │ └── lato-v13-latin-700italic.woff2
│ ├── merriweather
│ │ ├── merriweather-v15-latin-300.eot
│ │ ├── merriweather-v15-latin-300.svg
│ │ ├── merriweather-v15-latin-300.woff
│ │ ├── merriweather-v15-latin-300.woff2
│ │ ├── merriweather-v15-latin-300italic.eot
│ │ ├── merriweather-v15-latin-300italic.svg
│ │ ├── merriweather-v15-latin-300italic.woff
│ │ ├── merriweather-v15-latin-300italic.woff2
│ │ ├── merriweather-v15-latin-700.eot
│ │ ├── merriweather-v15-latin-700.svg
│ │ ├── merriweather-v15-latin-700.woff
│ │ ├── merriweather-v15-latin-700.woff2
│ │ ├── merriweather-v15-latin-700italic.eot
│ │ ├── merriweather-v15-latin-700italic.svg
│ │ ├── merriweather-v15-latin-700italic.woff
│ │ └── merriweather-v15-latin-700italic.woff2
│ └── openwebicons
│ │ ├── openwebicons.eot
│ │ ├── openwebicons.svg
│ │ ├── openwebicons.ttf
│ │ ├── openwebicons.woff
│ │ └── openwebicons.woff2
├── images
│ ├── beach.jpeg
│ ├── lights.jpeg
│ └── sea.jpeg
└── js
│ ├── block-editor.js
│ ├── navigation.js
│ └── share.js
├── comments.php
├── composer.json
├── footer.php
├── functions.php
├── header.php
├── image.php
├── includes
├── compat.php
├── customizer.php
├── featured-image.php
├── feed.php
├── semantics.php
├── template-functions.php
├── webactions.php
└── widgets.php
├── index.php
├── integrations
├── activitypub.php
├── post-kinds.php
└── syndication-links.php
├── languages
├── autonomie.pot
├── de_DE.mo
├── de_DE.po
└── nl_NL.po
├── offline.php
├── page-now.php
├── page.php
├── readme.txt
├── screenshot.png
├── sidebar.php
├── single.php
├── style.css
├── style.css.map
├── template-parts
├── entry-author.php
├── entry-footer.php
├── entry-header.php
├── entry-nav.php
├── entry-share.php
├── entry-taxonomy.php
├── page-banner-author.php
└── page-banner.php
├── templates
├── content-aside.php
├── content-audio.php
├── content-chat.php
├── content-gallery.php
├── content-image.php
├── content-link.php
├── content-page.php
├── content-quote.php
├── content-single.php
├── content-status.php
├── content-video.php
└── content.php
└── widgets
├── class-autonomie-author-widget.php
└── class-autonomie-taxonomy-widget.php
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "composer" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "daily"
12 | - package-ecosystem: "npm" # See documentation for possible values
13 | directory: "/" # Location of package manifests
14 | schedule:
15 | interval: "daily"
16 |
--------------------------------------------------------------------------------
/.github/stale.yml:
--------------------------------------------------------------------------------
1 | # Number of days of inactivity before an issue becomes stale
2 | daysUntilStale: 120
3 | # Number of days of inactivity before a stale issue is closed
4 | daysUntilClose: 7
5 | # Issues with these labels will never be considered stale
6 | exemptLabels:
7 | - pinned
8 | - security
9 | # Label to use when marking an issue as stale
10 | staleLabel: wontfix
11 | # Comment to post when marking an issue as stale. Set to `false` to disable
12 | markComment: >
13 | This issue has been automatically marked as stale because it has not had
14 | recent activity. It will be closed if no further activity occurs. Thank you
15 | for your contributions.
16 | # Comment to post when closing a stale issue. Set to `false` to disable
17 | closeComment: false
18 |
--------------------------------------------------------------------------------
/404.php:
--------------------------------------------------------------------------------
1 |
10 |
11 | >
12 |
13 |
14 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
31 |
32 | ' . sprintf( __( 'Try looking in the monthly archives. %1$s', 'autonomie' ), convert_smilies( ':)' ) ) . '';
35 | the_widget( 'WP_Widget_Archives', 'dropdown=1', "after_title=$archive_content" );
36 | ?>
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
--------------------------------------------------------------------------------
/500.php:
--------------------------------------------------------------------------------
1 |
10 |
11 | >
12 |
13 |
14 |
17 |
18 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2018 Matthias Pfefferle
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/archive.php:
--------------------------------------------------------------------------------
1 |
15 |
16 | >
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
43 |
44 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
--------------------------------------------------------------------------------
/assets/css/default-width.css:
--------------------------------------------------------------------------------
1 | .site-navigation,.site-header .site-branding,.site-header .page-banner #page-title,.site-header .page-banner #page-description,.site-header .page-banner #page-meta{width:700px}.page-banner .avatar{width:120px;height:120px}.entry-content>*,.entry-summary>*,.entry-content>form,.entry-content>div,.entry-header,.entry-footer>*,.entry-reaction,#comments,#nav-above,#nav-below,.reaction-list,.wp-block-quote.is-style-large{display:block;max-width:700px;margin:1.2em auto;box-sizing:border-box}.entry-content .wp-block-gallery,.entry-content .wp-block-columns,.entry-content .wp-block-media-text,.entry-summary .wp-block-gallery,.entry-summary .wp-block-columns,.entry-summary .wp-block-media-text{display:flex}.entry-footer .author{width:780px;max-width:780px;margin:70px auto}#sidebar{width:100%}#sidebar aside{margin:50px 50px}#sidebar #secondary{display:inline-block;float:left;width:50%}#sidebar #tertiary{display:inline-block;float:left;width:50%}#sidebar #quaternary{display:inline-block;float:left;width:50%}
2 |
3 | /*# sourceMappingURL=default-width.css.map */
--------------------------------------------------------------------------------
/assets/css/default-width.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["file:///Users/pfefferle/Code/autonomie/assets/sass/responsive_default.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_vars.scss"],"names":[],"mappings":"AAGA,oKAKC,MCiCe,MD9BhB,qBACC,YACA,aAGD,qMAYC,cACA,UCYe,MDXf,kBACA,sBAKA,4MAGC,aAIF,sBACC,YACA,gBACA,iBAGD,SACC,WAEA,eACC,iBAGD,oBACC,qBACA,WACA,UAGD,mBACC,qBACA,WACA,UAGD,qBACC,qBACA,WACA","file":"default-width.css"}
--------------------------------------------------------------------------------
/assets/css/editor-style.css:
--------------------------------------------------------------------------------
1 | body .editor-styles-wrapper{/*! normalize.css v3.0.2 | MIT License | git.io/normalize */}body .editor-styles-wrapper .wp-block{max-width:700px}body .editor-styles-wrapper .wp-block[data-align=wide]{max-width:900px}body .editor-styles-wrapper .wp-block[data-align=full]{max-width:none}body .editor-styles-wrapper html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body .editor-styles-wrapper body{margin:0}body .editor-styles-wrapper article,body .editor-styles-wrapper aside,body .editor-styles-wrapper details,body .editor-styles-wrapper figcaption,body .editor-styles-wrapper figure,body .editor-styles-wrapper footer,body .editor-styles-wrapper header,body .editor-styles-wrapper hgroup,body .editor-styles-wrapper main,body .editor-styles-wrapper menu,body .editor-styles-wrapper nav,body .editor-styles-wrapper section,body .editor-styles-wrapper summary{display:block}body .editor-styles-wrapper audio,body .editor-styles-wrapper canvas,body .editor-styles-wrapper progress,body .editor-styles-wrapper video{display:inline-block;vertical-align:baseline}body .editor-styles-wrapper audio:not([controls]){display:none;height:0}body .editor-styles-wrapper [hidden],body .editor-styles-wrapper template{display:none}body .editor-styles-wrapper a{background-color:rgba(0,0,0,0)}body .editor-styles-wrapper a:active,body .editor-styles-wrapper a:hover{outline:0}body .editor-styles-wrapper abbr[title]{border-bottom:1px dotted}body .editor-styles-wrapper b,body .editor-styles-wrapper strong{font-weight:bold}body .editor-styles-wrapper dfn{font-style:italic}body .editor-styles-wrapper h1{font-size:2em;margin:.67em 0}body .editor-styles-wrapper mark{background:#ff0;color:#000}body .editor-styles-wrapper small{font-size:80%}body .editor-styles-wrapper sub,body .editor-styles-wrapper sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}body .editor-styles-wrapper sup{top:-0.5em}body .editor-styles-wrapper sub{bottom:-0.25em}body .editor-styles-wrapper img{border:0}body .editor-styles-wrapper svg:not(:root){overflow:hidden}body .editor-styles-wrapper figure{margin:1em 40px}body .editor-styles-wrapper hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}body .editor-styles-wrapper pre{overflow:auto}body .editor-styles-wrapper code,body .editor-styles-wrapper kbd,body .editor-styles-wrapper pre,body .editor-styles-wrapper samp{font-family:monospace,monospace;font-size:1em}body .editor-styles-wrapper button,body .editor-styles-wrapper input,body .editor-styles-wrapper optgroup,body .editor-styles-wrapper select,body .editor-styles-wrapper textarea{color:inherit;font:inherit;margin:0}body .editor-styles-wrapper button{overflow:visible}body .editor-styles-wrapper button,body .editor-styles-wrapper select{text-transform:none}body .editor-styles-wrapper button,body .editor-styles-wrapper html input[type=button],body .editor-styles-wrapper input[type=reset],body .editor-styles-wrapper input[type=submit]{-webkit-appearance:button;cursor:pointer}body .editor-styles-wrapper button[disabled],body .editor-styles-wrapper html input[disabled]{cursor:default}body .editor-styles-wrapper button::-moz-focus-inner,body .editor-styles-wrapper input::-moz-focus-inner{border:0;padding:0}body .editor-styles-wrapper input{line-height:normal}body .editor-styles-wrapper input[type=checkbox],body .editor-styles-wrapper input[type=radio]{box-sizing:border-box;padding:0}body .editor-styles-wrapper input[type=number]::-webkit-inner-spin-button,body .editor-styles-wrapper input[type=number]::-webkit-outer-spin-button{height:auto}body .editor-styles-wrapper input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}body .editor-styles-wrapper input[type=search]::-webkit-search-cancel-button,body .editor-styles-wrapper input[type=search]::-webkit-search-decoration{-webkit-appearance:none}body .editor-styles-wrapper fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}body .editor-styles-wrapper legend{border:0;padding:0}body .editor-styles-wrapper textarea{overflow:auto}body .editor-styles-wrapper optgroup{font-weight:bold}body .editor-styles-wrapper table{border-collapse:collapse;border-spacing:0}body .editor-styles-wrapper td,body .editor-styles-wrapper th{padding:0}body .editor-styles-wrapper body{background-color:#fff;background-color:var(--color-background);color:#373d3f;color:var(--color-dark-gray);font-family:Lato,sans-serif;font-weight:400;word-wrap:break-word}body .editor-styles-wrapper *,body .editor-styles-wrapper ::before,body .editor-styles-wrapper ::after{box-sizing:inherit}body .editor-styles-wrapper address{font-style:normal}body .editor-styles-wrapper a{color:#373d3f;color:var(--color-dark-gray)}body .editor-styles-wrapper svg{fill:#373d3f;fill:var(--color-dark-gray)}body .editor-styles-wrapper a:hover{text-decoration:none}body .editor-styles-wrapper abbr{font-variant:small-caps}body .editor-styles-wrapper abbr[title]{border-bottom:1px dotted #4f575a;border-bottom-color:var(--color-gray);cursor:help}body .editor-styles-wrapper blockquote,body .editor-styles-wrapper figure{color:#4f575a;color:var(--color-gray);font-size:1em;font-style:italic;position:relative;line-height:1.5;font-family:"Merriweather",serif}body .editor-styles-wrapper blockquote small,body .editor-styles-wrapper blockquote figcaption,body .editor-styles-wrapper blockquote cite,body .editor-styles-wrapper figure small,body .editor-styles-wrapper figure figcaption,body .editor-styles-wrapper figure cite{color:#4f575a;color:var(--color-gray);display:block;font-size:.7em;font-style:normal;font-weight:normal}body .editor-styles-wrapper blockquote cite:before,body .editor-styles-wrapper blockquote small:before,body .editor-styles-wrapper figure cite:before,body .editor-styles-wrapper figure small:before{content:"— "}body .editor-styles-wrapper blockquote small,body .editor-styles-wrapper blockquote figcaption,body .editor-styles-wrapper blockquote cite{text-align:left}body .editor-styles-wrapper figure,body .editor-styles-wrapper .wp-block-pullquote{padding:0;margin:0}body .editor-styles-wrapper figure small,body .editor-styles-wrapper figure figcaption,body .editor-styles-wrapper figure cite,body .editor-styles-wrapper .wp-block-pullquote small,body .editor-styles-wrapper .wp-block-pullquote figcaption,body .editor-styles-wrapper .wp-block-pullquote cite{text-align:right}body .editor-styles-wrapper figure blockquote,body .editor-styles-wrapper .wp-block-pullquote blockquote{hyphens:auto;word-wrap:break-word;border:none;text-align:center}body .editor-styles-wrapper iframe{border:none;border-spacing:0}body .editor-styles-wrapper blockquote{border:0;border-left:3px solid #d1d5d7;margin:0;padding-left:30px;line-height:1.8}body .editor-styles-wrapper code{background-color:var(--color-dark-gray);color:var(--color-white);border-radius:.3em;padding:4px 5px 5px}body .editor-styles-wrapper code a{color:var(--color-white)}body .editor-styles-wrapper ins{background:#fff9c0;text-decoration:none}body .editor-styles-wrapper h1,body .editor-styles-wrapper h2,body .editor-styles-wrapper h3,body .editor-styles-wrapper h4,body .editor-styles-wrapper h5,body .editor-styles-wrapper h6{font-family:"Merriweather",serif;font-weight:100;margin-bottom:0;line-height:1.2em}body .editor-styles-wrapper h1{font-size:2.2em}body .editor-styles-wrapper h2{font-size:2em}body .editor-styles-wrapper h3{font-size:1.8em}body .editor-styles-wrapper h4{font-size:1.6em}body .editor-styles-wrapper h5{font-size:1.4em}body .editor-styles-wrapper h6{font-size:1.2em}body .editor-styles-wrapper hr{display:block;width:200px;margin:60px auto !important;border:0;border-top:1px solid #d1d5d7;text-align:center}body .editor-styles-wrapper pre{margin-top:50px;margin-bottom:50px;background-color:#000;color:#fff;display:block;padding:50px;white-space:pre-wrap;word-wrap:break-word}body .editor-styles-wrapper pre code{background-color:inherit;color:inherit;border-radius:inherit;padding:0;white-space:inherit}body .editor-styles-wrapper h1,body .editor-styles-wrapper h2,body .editor-styles-wrapper h3,body .editor-styles-wrapper h4,body .editor-styles-wrapper h5,body .editor-styles-wrapper h6,body .editor-styles-wrapper caption,body .editor-styles-wrapper figcaption{text-wrap:balance}body .editor-styles-wrapper p,body .editor-styles-wrapper ul,body .editor-styles-wrapper ol,body .editor-styles-wrapper blockquote{text-wrap:pretty}body .editor-styles-wrapper .single #primary article.has-full-width-featured-image,body .editor-styles-wrapper .page #primary article.has-full-width-featured-image{margin-top:0px}body .editor-styles-wrapper .has-full-width-featured-image .entry-header{margin:0;width:100%;max-width:100%;position:relative;height:75vh;max-height:75%;min-height:500px;margin-bottom:50px;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-title,body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-meta,body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-format{color:#fff}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-title a,body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-meta a,body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-format a{color:#fff}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-meta.post-format .entry-format::before{color:#fff}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-header-wrapper{position:absolute;left:0;bottom:0;width:100%;margin-bottom:50px}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-header-wrapper>*{margin:0 auto;width:700px}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .entry-header-wrapper .entry-meta{margin-top:15px}body .editor-styles-wrapper .has-full-width-featured-image .entry-header .avatar{border:2px solid #fff}body .editor-styles-wrapper #primary article:first-child{margin-top:50px}body .editor-styles-wrapper .home #primary article:after,body .editor-styles-wrapper .archive #primary article:after{content:"";border-top:1px solid #d1d5d7;width:200px;display:block;text-align:center;margin:0 auto;margin-top:100px}body .editor-styles-wrapper h1.entry-title,body .editor-styles-wrapper h2.entry-title,body .editor-styles-wrapper h3.entry-title,body .editor-styles-wrapper h4.entry-title{margin:0;padding:0;font-size:2em;line-height:1.2em}body .editor-styles-wrapper h1.entry-title a,body .editor-styles-wrapper h2.entry-title a,body .editor-styles-wrapper h3.entry-title a,body .editor-styles-wrapper h4.entry-title a{hyphens:auto;text-overflow:ellipsis;overflow:hidden;font-size:1em;line-height:1;text-decoration:none;color:#373d3f;color:var(--color-dark-gray)}body .editor-styles-wrapper h1.entry-title a:hover,body .editor-styles-wrapper h2.entry-title a:hover,body .editor-styles-wrapper h3.entry-title a:hover,body .editor-styles-wrapper h4.entry-title a:hover{text-decoration:underline}body .editor-styles-wrapper .format-quote .entry-content,body .editor-styles-wrapper .format-aside .entry-content,body .editor-styles-wrapper .format-status .entry-content{font-size:1.5em}body .editor-styles-wrapper .type-page h1.entry-title,body .editor-styles-wrapper .type-page h2.entry-title,body .editor-styles-wrapper .type-page h3.entry-title,body .editor-styles-wrapper .type-page h4.entry-title,body .editor-styles-wrapper .format-standard h1.entry-title,body .editor-styles-wrapper .format-standard h2.entry-title,body .editor-styles-wrapper .format-standard h3.entry-title,body .editor-styles-wrapper .format-standard h4.entry-title{font-size:3.5em}body .editor-styles-wrapper .entry-content,body .editor-styles-wrapper .entry-summary{color:#373d3f;color:var(--color-dark-gray);font-style:normal;font-size:1.2em;margin:0 auto}body .editor-styles-wrapper .entry-content .wp-block-cover-image,body .editor-styles-wrapper .entry-content .alignfull,body .editor-styles-wrapper .entry-summary .wp-block-cover-image,body .editor-styles-wrapper .entry-summary .alignfull{max-width:100%;width:100%}body .editor-styles-wrapper .entry-content .alignwide,body .editor-styles-wrapper .entry-summary .alignwide{width:auto;max-width:900px}body .editor-styles-wrapper .entry-content p.has-background,body .editor-styles-wrapper .entry-summary p.has-background{width:100%;max-width:100%;padding:30px calc((100% - 700px)/2);margin:0}body .editor-styles-wrapper .entry-content a,body .editor-styles-wrapper .entry-summary a{text-decoration:underline}@supports(text-decoration: underline #9bc53d){body .editor-styles-wrapper .entry-content a,body .editor-styles-wrapper .entry-summary a{text-decoration:underline #9bc53d;text-decoration:underline var(--color-android-green);text-decoration-thickness:3px;text-underline-offset:6px}}@supports(text-decoration: underline #9bc53d){body .editor-styles-wrapper .entry-content a:hover,body .editor-styles-wrapper .entry-summary a:hover{text-decoration:underline #fc0;text-decoration:underline var(--color-usc-gold);text-decoration-thickness:3px;text-underline-offset:6px}}body .editor-styles-wrapper .entry-actions{display:block}body .editor-styles-wrapper .entry-actions:before,body .editor-styles-wrapper .entry-actions:after{content:" ";display:table}body .editor-styles-wrapper .entry-actions:after{clear:both}body .editor-styles-wrapper #entry-share{display:inline-block;font-size:1em;font-family:"Lato",sans-serif;background-color:#fafafb;background-color:var(--color-background-gray);border:none;border-radius:3px;color:#373d3f;color:var(--color-dark-gray);line-height:inherit;padding:3px 7px;text-decoration:none;float:right}body .editor-styles-wrapper #entry-share:hover{background-color:#eef4e2;color:#40531e}body .editor-styles-wrapper #entry-share:before{display:inline-block;font:normal 1.1em "Dashicons";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;margin-right:0;position:relative;text-decoration:none;top:2px;vertical-align:text-middle;margin-right:5px;content:""}body .editor-styles-wrapper .page-link,body .editor-styles-wrapper .page-links{margin-bottom:1em}body .editor-styles-wrapper .entry-meta,body .editor-styles-wrapper .wp-caption-text,body .editor-styles-wrapper .gallery-caption,body .editor-styles-wrapper .page-link,body .editor-styles-wrapper .page-links{font-family:"Lato",sans-serif;clear:both;color:#4f575a;color:var(--color-gray);display:block}body .editor-styles-wrapper .entry-meta a,body .editor-styles-wrapper .wp-caption-text a,body .editor-styles-wrapper .gallery-caption a,body .editor-styles-wrapper .page-link a,body .editor-styles-wrapper .page-links a{color:#4f575a;color:var(--color-gray);text-decoration:none}body .editor-styles-wrapper .entry-meta a:hover,body .editor-styles-wrapper .wp-caption-text a:hover,body .editor-styles-wrapper .gallery-caption a:hover,body .editor-styles-wrapper .page-link a:hover,body .editor-styles-wrapper .page-links a:hover{text-decoration:underline}body .editor-styles-wrapper .entry-meta .avatar,body .editor-styles-wrapper .wp-caption-text .avatar,body .editor-styles-wrapper .gallery-caption .avatar,body .editor-styles-wrapper .page-link .avatar,body .editor-styles-wrapper .page-links .avatar{float:left;margin-right:10px}body .editor-styles-wrapper .entry-footer .author:before,body .editor-styles-wrapper .entry-footer .author:after{content:" ";display:table}body .editor-styles-wrapper .entry-footer .author:after{clear:both}body .editor-styles-wrapper .entry-meta{position:relative;margin-top:15px;margin-bottom:15px}body .editor-styles-wrapper .entry-meta.post-format{padding:0;margin:0;margin-bottom:10px}body .editor-styles-wrapper .entry-meta.post-format a,body .editor-styles-wrapper .entry-meta.post-format span,body .editor-styles-wrapper .entry-meta.post-format .entry-format:before{color:#b6bdbf;color:var(--color-lighter-gray);font-weight:bold;text-transform:lowercase}body .editor-styles-wrapper .entry-meta.post-format .entry-format:before{display:inline-block;font:normal 1.1em "Dashicons";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;isolation:isolate;margin-right:5px;position:relative;text-decoration:none;top:2px;vertical-align:text-middle;color:#b6bdbf;color:var(--color-lighter-gray)}body .editor-styles-wrapper .entry-meta .entry-format{line-height:1}body .editor-styles-wrapper .entry-meta address{font-size:1em;line-height:1.2;color:#373d3f;color:var(--color-dark-gray)}body .editor-styles-wrapper .entry-meta .entry-date,body .editor-styles-wrapper .entry-meta .entry-duration{font-size:.8em}body .editor-styles-wrapper .comments-link{font-size:1em;display:inline-block}body .editor-styles-wrapper .comments-link:before{display:inline-block;font:normal 1.1em "Dashicons";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizeLegibility;margin-right:0;position:relative;text-decoration:inherit;top:2px;vertical-align:text-middle;margin-right:5px;content:""}body .editor-styles-wrapper .tag-links,body .editor-styles-wrapper .cat-links{margin:10px 0;display:block}body .editor-styles-wrapper .tag-links ul,body .editor-styles-wrapper .cat-links ul{margin:0;padding:0}body .editor-styles-wrapper .tag-links li,body .editor-styles-wrapper .cat-links li{display:inline-block;margin:10px 8px 0 0;list-style-type:none;font-size:1.2em}body .editor-styles-wrapper .tag-links li a,body .editor-styles-wrapper .cat-links li a{font-size:1em;font-family:"Lato",sans-serif;background-color:#fafafb;background-color:var(--color-background-gray);border-radius:3px;color:#373d3f;color:var(--color-dark-gray);line-height:1;padding:5px 8px;text-decoration:none}body .editor-styles-wrapper .tag-links li a:hover,body .editor-styles-wrapper .cat-links li a:hover{background-color:#eef4e2;color:#40531e}body .editor-styles-wrapper .tag-links li a,body .editor-styles-wrapper .cat-links li a{font-size:.8em}body .editor-styles-wrapper #primary article{padding:0;margin-top:100px;position:relative}body .editor-styles-wrapper #primary article:before,body .editor-styles-wrapper #primary article:after{content:" ";display:table}body .editor-styles-wrapper #primary article:after{clear:both}body .editor-styles-wrapper #primary article .sep:first-of-type{display:none}body .editor-styles-wrapper #primary article.format-quote .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-aside .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-video .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-audio .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-image .post-format .entry-format:before,body .editor-styles-wrapper #primary article.format-photo .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-gallery .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-link .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-status .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.format-standard .post-format .entry-format:before{content:""}body .editor-styles-wrapper #primary article.type-page .post-format .entry-type-page:before{content:""}body .editor-styles-wrapper .edit-link{position:absolute;right:0;top:50px}body .editor-styles-wrapper .edit-link a{font-size:1em;font-family:"Lato",sans-serif;background-color:#fafafb;background-color:var(--color-background-gray);border-radius:3px;color:#373d3f;color:var(--color-dark-gray);line-height:1;padding:5px 8px;text-decoration:none}body .editor-styles-wrapper .edit-link a:hover{background-color:#eef4e2;color:#40531e}body .editor-styles-wrapper .more-link{display:block;font-size:.8em;color:#4f575a;color:var(--color-gray)}body .editor-styles-wrapper .entry-content .has-orioles-orange-background-color{background-color:#fa5b0f}body .editor-styles-wrapper .entry-content .has-orioles-orange-color{color:#fa5b0f}body .editor-styles-wrapper .entry-content .has-blue-background-color{background-color:#5fa7c5}body .editor-styles-wrapper .entry-content .has-blue-color{color:#5fa7c5}body .editor-styles-wrapper .entry-content .has-lighter-blue-background-color{background-color:#229fd8}body .editor-styles-wrapper .entry-content .has-lighter-blue-color{color:#229fd8}body .editor-styles-wrapper .entry-content .has-blue-jeans-background-color{background-color:#5bc0eb}body .editor-styles-wrapper .entry-content .has-blue-jeans-color{color:#5bc0eb}body .editor-styles-wrapper .entry-content .has-usc-gold-background-color{background-color:#fc0}body .editor-styles-wrapper .entry-content .has-usc-gold-color{color:#fc0}body .editor-styles-wrapper .entry-content .has-gargoyle-gas-background-color{background-color:#fde74c}body .editor-styles-wrapper .entry-content .has-gargoyle-gas-color{color:#fde74c}body .editor-styles-wrapper .entry-content .has-yellow-background-color{background-color:#fff9c0}body .editor-styles-wrapper .entry-content .has-yellow-color{color:#fff9c0}body .editor-styles-wrapper .entry-content .has-android-green-background-color{background-color:#9bc53d}body .editor-styles-wrapper .entry-content .has-android-green-color{color:#9bc53d}body .editor-styles-wrapper .entry-content .has-white-background-color{background-color:#fff;background-color:var(--color-white)}body .editor-styles-wrapper .entry-content .has-white-color{color:#fff;color:var(--color-white)}body .editor-styles-wrapper .entry-content .has-very-light-gray-background-color{background-color:#eee}body .editor-styles-wrapper .entry-content .has-very-light-gray-color{color:#eee}body .editor-styles-wrapper .entry-content .has-very-dark-gray-background-color{background-color:#444}body .editor-styles-wrapper .entry-content .has-very-dark-gray-color{color:#444}body .editor-styles-wrapper .sticky{color:inherit}body .editor-styles-wrapper .wp-block-footnotes{border-top:solid 1px #d3d3d3;margin-top:2em;padding-top:2em;font-size:.8em;padding-left:0;list-style-position:inside}
2 |
3 | /*# sourceMappingURL=editor-style.css.map */
--------------------------------------------------------------------------------
/assets/css/editor-style.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["file:///Users/pfefferle/Code/autonomie/assets/sass/editor-style.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_vars.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_normalize.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_base.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_post.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_mixins.scss"],"names":[],"mappings":"CAAA,yFAIC,sCACC,UCoCc,MDhCf,uDACC,UC8BW,MD1BZ,uDACC,eEPF,iCACC,uBACA,0BACA,8BAOD,iCACC,SAaD,ucAaC,cAQD,4IAIC,qBACA,wBAQD,kDACC,aACA,SAQD,0EAEC,aAUD,8BACC,+BAOD,yEAEC,UAUD,wCACC,yBAOD,iEAEC,iBAOD,gCACC,kBAQD,+BACC,cACA,eAOD,iCACC,gBACA,WAOD,kCACC,cAOD,gEAEC,cACA,cACA,kBACA,wBAGD,gCACC,WAGD,gCACC,eAUD,gCACC,SAOD,2CACC,gBAUD,mCACC,gBAOD,+BACC,4BACA,uBACA,SAOD,gCACC,cAOD,kIAIC,gCACA,cAkBD,kLAKC,cACA,aACA,SAOD,mCACC,iBAUD,sEAEC,oBAWD,oLAIC,0BACA,eAOD,8FAEC,eAOD,yGAEC,SACA,UAQD,kCACC,mBAWD,+FAEC,sBACA,UASD,oJAEC,YASD,+CACC,6BACA,4BACA,+BACA,uBASD,uJAEC,wBAOD,qCACC,wBACA,aACA,2BAQD,mCACC,SACA,UAOD,qCACC,cAQD,qCACC,iBAUD,kCACC,yBACA,iBAGD,8DAEC,UCzaD,iCACC,iBFkCO,KEjCP,yCACA,cACA,6BAEA,4BACA,gBACA,qBAGD,uGACC,mBAGD,oCACC,kBAGD,8BACC,MFjBW,QEkBX,6BAGD,gCACC,KFtBW,QEuBX,4BAGD,oCACC,qBAGD,iCACC,wBAEA,wCACC,iCACA,sCACA,YAIF,0EAEC,MFzCM,QE0CN,wBACA,cACA,kBACA,kBACA,gBACA,iCAEA,0QAGC,MFpDK,QEqDL,wBACA,cACA,eACA,kBACA,mBAKA,sMACC,aAMF,2IAGC,gBAIF,mFAEC,UACA,SAEA,qSAGC,iBAGD,yGACC,aACA,qBACA,YACA,kBAIF,mCACC,YACA,iBAGD,uCACC,SACA,8BACA,SACA,kBACA,gBAGD,iCACC,wCACA,yBACA,mBACA,oBAEA,mCACC,yBAIF,gCACC,WF3FQ,QE4FR,qBAGD,0LAMC,iCACA,gBACA,gBACA,kBAGD,+BACC,gBAGD,+BACC,cAGD,+BACC,gBAGD,+BACC,gBAGD,+BACC,gBAGD,+BACC,gBAGD,+BACC,cACA,YACA,4BACA,SACA,6BACA,kBAGD,gCACC,gBACA,mBACA,sBACA,WACA,cACA,aACA,qBACA,qBAEA,qCACC,yBACA,cACA,sBACA,UACA,oBAIF,qQACC,kBAGD,mIACC,iBClMC,oKACC,eAMF,yEACC,SACA,WACA,eACA,kBACA,YACA,eACA,iBACA,mBACA,8BACA,2BACA,yBACA,sBAEA,kQACC,MHUK,KGRL,wQACC,MHOI,KGHN,uHACC,MHEK,KGCN,+FACC,kBACA,OACA,SACA,WACA,mBAGD,iGACC,cACA,MHLa,MGQd,2GACC,gBAGD,iFACC,sBAKH,yDACC,gBAMC,qHACC,WACA,6BACA,YACA,cACA,kBACA,cACA,iBAKH,4KAIC,SACA,UAEA,cACA,kBAEA,oLACC,aACA,uBACA,gBACA,cACA,cACA,qBACA,MH5FU,QG6FV,6BAEA,4MACC,0BAMF,4KACC,gBAMD,wcAIC,gBAIF,sFAEC,MHvHW,QGwHX,6BACA,kBACA,gBACA,cAEA,8OAEC,eACA,WAGD,4GACC,WACA,UHhGW,MGmGZ,wHACC,WACA,eACA,oCACA,SAGD,0FACC,0BAEA,8CAHD,0FAIE,kCACA,qDACA,8BACA,2BAIA,8CADD,sGAEE,+BACA,gDACA,8BACA,2BAMJ,2CACC,cC7JA,mGAEC,YACA,cAGD,iDACC,WD2JF,yCACC,qBACA,cACA,8BACA,iBHxKiB,QGyKjB,8CACA,YACA,kBACA,MHlLW,QGmLX,6BACA,oBACA,gBACA,qBACA,YAEA,+CACC,iBHvKY,QGwKZ,MHzKW,QG4KZ,gDACC,qBACA,8BACA,mCACA,kCACA,kCACA,eACA,kBACA,qBACA,QACA,2BACA,iBACA,YAIF,+EAEC,kBAGD,iNAKC,8BACA,WACA,MHzNM,QG0NN,wBACA,cAEA,2NACC,MH9NK,QG+NL,wBACA,qBAGD,yPACC,0BAGD,yPACC,WACA,kBClOD,iHAEC,YACA,cAGD,wDACC,WDmOF,wCACC,kBAEA,gBACA,mBAEA,oDACC,UACA,SACA,mBAGD,wLAGC,MH9Pa,QG+Pb,gCACA,iBACA,yBAGD,yEACC,qBACA,8BACA,mCACA,kCACA,kCACA,kBACA,iBACA,kBACA,qBACA,QACA,2BACA,MHhRa,QGiRb,gCAGD,sDACC,cAGD,gDACC,cACA,gBACA,MH9RU,QG+RV,6BAGD,4GAEC,eAIF,2CACC,cACA,qBAEA,kDACC,qBACA,8BACA,mCACA,kCACA,kCACA,eACA,kBACA,wBACA,QACA,2BACA,iBACA,YAIF,8EAEC,cACA,cAEA,oFACC,SACA,UAGD,oFACC,qBACA,oBACA,qBACA,gBCtTD,wFACC,cACA,8BACA,iBJjBgB,QIkBhB,8CACA,kBACA,MJ1BU,QI2BV,6BACA,cACA,gBACA,qBAEA,oGACC,iBJdW,QIeX,MJhBU,QG4TX,wFACC,eAKH,6CACC,UACA,iBACA,kBC/UA,uGAEC,YACA,cAGD,mDACC,WD4UD,gEACC,aAGD,4FACC,YAGD,4FACC,YAGD,4FACC,YAGD,4FACC,YAGD,wLAEC,YAGD,8FACC,YAGD,2FACC,YAGD,6FACC,YAGD,+FACC,YAGD,4FACC,YAIF,uCACC,kBACA,QACA,SCxXA,yCACC,cACA,8BACA,iBJjBgB,QIkBhB,8CACA,kBACA,MJ1BU,QI2BV,6BACA,cACA,gBACA,qBAEA,+CACC,iBJdW,QIeX,MJhBU,QG+Xb,uCACC,cACA,eACA,MHnZM,QGoZN,wBAIA,gFACC,iBH/Xe,QGkYhB,qEACC,MHnYe,QGsYhB,sEACC,iBHzZK,QG4ZN,2DACC,MH7ZK,QGgaN,8EACC,iBH5Za,QG+Zd,mEACC,MHhaa,QGmad,4EACC,iBHraW,QGwaZ,iEACC,MHzaW,QG4aZ,0EACC,iBH9ZS,KGiaV,+DACC,MHlaS,KGqaV,8EACC,iBHraa,QGwad,mEACC,MHzaa,QG4ad,wEACC,iBH5aO,QG+aR,6DACC,MHhbO,QGmbR,+EACC,iBHnbc,QGsbf,oEACC,MHvbc,QG0bf,uEACC,iBH1bM,KG2bN,oCAGD,4DACC,MH/bM,KGgcN,yBAGD,iFACC,iBHncgB,KGscjB,sEACC,MHvcgB,KG0cjB,gFACC,iBH1ce,KG6chB,qEACC,MH9ce,KGkdjB,oCACC,cAID,gDACC,6BACA,eACA,gBACA,eACA,eACA","file":"editor-style.css"}
--------------------------------------------------------------------------------
/assets/css/narrow-width.css:
--------------------------------------------------------------------------------
1 | html{font-size:1em}#sidebar,.site-header .site-branding,.site-header .page-banner #page-description,.site-header .page-banner #page-title,.site-header .page-banner #page-meta,.site-navigation,.has-full-width-featured-image .entry-header .entry-header-wrapper>*{width:90%}.page-banner .avatar{width:80px;height:80px}.page-branding.author #page-description{font-size:1.2em}.site-header .page-banner .page-branding.author #page-title{font-size:2em}.entry-footer .author .fn,.entry-footer .author .note,.entry-footer .author .subscribe{margin-left:inherit}.entry-content p.has-background,.entry-summary p.has-background{padding:30px 5%}.entry-footer .author{width:100%;max-width:100%}.alignright,.alignleft,.wp-block-image .alignright,.wp-block-image .alignleft,.wp-block-button.alignright,.wp-block-button.alignleft{float:none;clear:both;margin:1.2em auto}.entry-content>*,.entry-summary>*,.entry-content>form,.entry-content>div,.entry-header,.entry-footer>*,.entry-reaction,#comments,#nav-above,#nav-below,.reaction-list,.wp-block-quote.is-style-large{max-width:90%;margin:1.2em auto;box-sizing:border-box}.type-page h1.entry-title,.type-page h2.entry-title,.type-page h3.entry-title,.type-page h4.entry-title,.format-standard h1.entry-title,.format-standard h2.entry-title,.format-standard h3.entry-title,.format-standard h4.entry-title{font-size:3em}.entry-content>pre,.entry-content>table{max-width:100%}.entry-header .entry-title{font-size:2.5em}.site-header .page-branding{font-size:.8em}.site-header .search-field{width:100px}.page-header{width:100%}#nav-below .nav-previous{bottom:20px;z-index:1}#nav-below .nav-next{bottom:20px;z-index:1}.error404 .entry-content .widget,#sidebar #secondary,#sidebar #tertiary,#sidebar #quaternary{width:90%;clear:both}#sidebar aside{margin:50px 0}ul.children{padding-left:10px}
2 |
3 | /*# sourceMappingURL=narrow-width.css.map */
--------------------------------------------------------------------------------
/assets/css/narrow-width.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["file:///Users/pfefferle/Code/autonomie/assets/sass/responsive_narrow.scss"],"names":[],"mappings":"AAGA,KACC,cAGD,kPAOC,UAGD,qBACC,WACA,YAGD,wCACC,gBAGD,4DACC,cAGD,uFAGC,oBAKA,gEACC,gBAIF,sBACC,WACA,eAGD,qIAMC,WACA,WACA,kBAGD,qMAYC,cACA,kBACA,sBAKA,wOAIC,cAIF,wCAEC,eAGD,2BACC,gBAIA,4BACC,eAGD,2BACC,YAIF,aACC,WAIA,yBACC,YACA,UAGD,qBACC,YACA,UAIF,6FAIC,UACA,WAIA,eACC,cAIF,YACC","file":"narrow-width.css"}
--------------------------------------------------------------------------------
/assets/css/print.css:
--------------------------------------------------------------------------------
1 | *,*:before,*:after,*:first-letter,*:first-line{background:rgba(0,0,0,0) !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #4f575a;border-color:var(--color-gray);page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}
2 |
3 | /*# sourceMappingURL=print.css.map */
--------------------------------------------------------------------------------
/assets/css/print.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["file:///Users/pfefferle/Code/autonomie/assets/sass/print.scss"],"names":[],"mappings":"AAGA,+CAKC,oCACA,sBAEA,2BACA,4BAGD,YAEC,0BAGD,cACC,4BAGD,kBACC,6BAQD,gDAEC,WAGD,eAEC,yBACA,+BACA,wBAQD,MACC,2BAGD,OAEC,wBAGD,IACC,0BAGD,QAGC,UACA,SAGD,MAEC","file":"print.css"}
--------------------------------------------------------------------------------
/assets/css/wide-width.css:
--------------------------------------------------------------------------------
1 | #sidebar,.site-navigation,.site-header .site-branding,.site-header .page-banner #page-title,.site-header .page-banner #page-description,.has-full-width-featured-image .entry-header .entry-header-wrapper>*{width:900px}.entry-content .wp-block-image,.entry-content .entry-attachment{width:900px;max-width:900px}.entry-content .wp-block-image.alignfull{width:100%;max-width:100%}#sidebar{width:1300px;max-width:100%}#sidebar aside{margin:50px 50px}#sidebar #secondary{display:inline-block;float:left;width:33%}#sidebar #tertiary{display:inline-block;float:left;width:33%}#sidebar #quaternary{display:inline-block;float:left;width:33%}.entry-content>span{display:inline-block}.entry-content>object,.entry-content>embed,.entry-content>iframe,.entry-content>figure,.entry-content .wp-block-pullquote,.entry-summary>object,.entry-summary>embed,.entry-summary>iframe,.entry-summary>figure,.entry-summary .wp-block-pullquote{max-width:900px;box-sizing:border-box}.entry-content>object small,.entry-content>object figcaption,.entry-content>object cite,.entry-content>embed small,.entry-content>embed figcaption,.entry-content>embed cite,.entry-content>iframe small,.entry-content>iframe figcaption,.entry-content>iframe cite,.entry-content>figure small,.entry-content>figure figcaption,.entry-content>figure cite,.entry-content .wp-block-pullquote small,.entry-content .wp-block-pullquote figcaption,.entry-content .wp-block-pullquote cite,.entry-summary>object small,.entry-summary>object figcaption,.entry-summary>object cite,.entry-summary>embed small,.entry-summary>embed figcaption,.entry-summary>embed cite,.entry-summary>iframe small,.entry-summary>iframe figcaption,.entry-summary>iframe cite,.entry-summary>figure small,.entry-summary>figure figcaption,.entry-summary>figure cite,.entry-summary .wp-block-pullquote small,.entry-summary .wp-block-pullquote figcaption,.entry-summary .wp-block-pullquote cite{margin-right:100px}.entry-content>table,.entry-content>pre,.entry-summary>table,.entry-summary>pre{width:900px;max-width:900px;box-sizing:border-box}.wp-audio-shortcode{width:700px !important}figure.alignleft,.wp-block-cover.alignleft,.wp-block-gallery.alignleft,.wp-block-button.alignleft{float:left;margin-top:.3em;margin-right:2em;margin-left:calc(50% - 350px)}figure.alignright,.wp-block-cover.alignright,.wp-block-gallery.alignright,.wp-block-button.alignright{float:right;margin-top:.3em;margin-left:2em;margin-right:calc(50% - 350px)}p.alignleft{font-size:.9em;font-style:italic;float:left;color:#677275;color:var(--color-light-gray);padding:1em 0 1em 0;margin-right:2.5em;margin-left:calc(50% - 450px);width:400px;border-top:1px solid #677275;border-top-color:var(--color-light-gray);border-bottom:1px solid #677275;border-bottom-color:var(--color-light-gray)}p.alignright{font-size:.9em;font-style:italic;float:right;color:#677275;color:var(--color-light-gray);padding:1em 0 1em 0;margin-left:2.5em;margin-right:calc(50% - 450px);width:400px;border-top:1px solid #677275;border-top-color:var(--color-light-gray);border-bottom:1px solid #677275;border-bottom-color:var(--color-light-gray)}.alignright figcaption{display:block;height:68px;margin-top:0px;text-align:left;width:100px;margin-left:20px;word-break:break-word;word-wrap:break-word;float:right}.alignright figcaption:before{width:25%;margin-right:75%;border-top:1px solid #677275;border-top-color:var(--color-light-gray);display:block;content:"";margin-bottom:10px}.alignleft figcaption{display:block;height:68px;margin-top:0px;text-align:right;width:100px;margin-right:20px;word-break:break-word;word-wrap:break-word;float:left}.alignleft figcaption:before{width:25%;margin-left:75%;border-top:1px solid #677275;border-top-color:var(--color-light-gray);display:block;content:"";margin-bottom:10px}article.error404 .entry-content{width:900px;margin:auto auto}
2 |
3 | /*# sourceMappingURL=wide-width.css.map */
--------------------------------------------------------------------------------
/assets/css/wide-width.css.map:
--------------------------------------------------------------------------------
1 | {"version":3,"sourceRoot":"","sources":["file:///Users/pfefferle/Code/autonomie/assets/sass/responsive_wide.scss","file:///Users/pfefferle/Code/autonomie/assets/sass/_vars.scss"],"names":[],"mappings":"AAGA,6MAMC,MC+BY,MD3BZ,gEAEC,MCyBW,MDxBX,UCwBW,MDrBZ,yCACC,WACA,eAIF,SACC,aACA,eAEA,eACC,iBAGD,oBACC,qBACA,WACA,UAGD,mBACC,qBACA,WACA,UAGD,qBACC,qBACA,WACA,UAIF,oBACC,qBAKA,oPAKC,UCvBW,MDwBX,sBAEA,w7BAGC,aC3BM,MDkCR,gFAEC,MCtCW,MDuCX,UCvCW,MDwCX,sBAIF,oBACC,uBAOA,kGACC,WACA,gBACA,iBACA,8BAGD,sGACC,YACA,gBACA,gBACA,+BAKD,YACC,eACA,kBACA,WACA,MC3GW,QD4GX,8BACA,oBACA,mBACA,8BACA,YACA,6BACA,yCACA,gCACA,4CAGD,aACC,eACA,kBACA,YACA,MC3HW,QD4HX,8BACA,oBACA,kBACA,+BACA,YACA,6BACA,yCACA,gCACA,4CAKD,uBACC,cACA,YACA,eACA,gBACA,MCzGO,MD0GP,iBACA,sBACA,qBACA,YAEA,8BACC,UACA,iBACA,6BACA,yCACA,cACA,WACA,mBAMF,sBACC,cACA,YACA,eACA,iBACA,MCjIO,MDkIP,kBACA,sBACA,qBACA,WAEA,6BACC,UACA,gBACA,6BACA,yCACA,cACA,WACA,mBAKH,gCACC,MCtJY,MDuJZ","file":"wide-width.css"}
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300.eot
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300.woff
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300.woff2
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300italic.eot
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300italic.woff
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-300italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-300italic.woff2
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700.eot
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700.woff
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700.woff2
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700italic.eot
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700italic.woff
--------------------------------------------------------------------------------
/assets/font/lato/lato-v13-latin-700italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/lato/lato-v13-latin-700italic.woff2
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300.eot
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300.woff
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300.woff2
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300italic.eot
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300italic.woff
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-300italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-300italic.woff2
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700.eot
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700.woff
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700.woff2
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700italic.eot
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700italic.woff
--------------------------------------------------------------------------------
/assets/font/merriweather/merriweather-v15-latin-700italic.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/merriweather/merriweather-v15-latin-700italic.woff2
--------------------------------------------------------------------------------
/assets/font/openwebicons/openwebicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/openwebicons/openwebicons.eot
--------------------------------------------------------------------------------
/assets/font/openwebicons/openwebicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/openwebicons/openwebicons.ttf
--------------------------------------------------------------------------------
/assets/font/openwebicons/openwebicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/openwebicons/openwebicons.woff
--------------------------------------------------------------------------------
/assets/font/openwebicons/openwebicons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/font/openwebicons/openwebicons.woff2
--------------------------------------------------------------------------------
/assets/images/beach.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/images/beach.jpeg
--------------------------------------------------------------------------------
/assets/images/lights.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/images/lights.jpeg
--------------------------------------------------------------------------------
/assets/images/sea.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pfefferle/autonomie/5aa70a5df068662d78180465a38644a0cf54c9fd/assets/images/sea.jpeg
--------------------------------------------------------------------------------
/assets/js/block-editor.js:
--------------------------------------------------------------------------------
1 | "use strict"
2 |
3 | // Inspired by https://digitalapps.co/gutenberg-extending-featured-image-component/
4 |
5 | const el = wp.element.createElement;
6 | const withState = wp.compose.withState;
7 | const withSelect = wp.data.withSelect;
8 | const withDispatch = wp.data.withDispatch;
9 | const { __ } = wp.i18n;
10 |
11 | wp.hooks.addFilter(
12 | 'editor.PostFeaturedImage',
13 | 'autonomie/full_width_featured_image',
14 | wrapPostFeaturedImage
15 | );
16 |
17 | function wrapPostFeaturedImage( OriginalComponent ) {
18 | return function( props ) {
19 | return (
20 | el(
21 | wp.element.Fragment,
22 | {},
23 | '',
24 | el(
25 | OriginalComponent,
26 | props
27 | ),
28 | el(
29 | composedFullWidthFeaturedImageCheckBox
30 | )
31 | )
32 | );
33 | }
34 | }
35 |
36 | class FullWidthFeaturedImageCheckBox extends React.Component {
37 | render() {
38 | const {
39 | meta,
40 | updateFullWidthFeaturedImage,
41 | } = this.props;
42 |
43 | return (
44 | el(
45 | wp.components.CheckboxControl,
46 | {
47 | label: __( 'Use as post cover (full-width)', 'autonomie' ),
48 | checked: meta.full_width_featured_image,
49 | onChange:
50 | ( value ) => {
51 | this.setState( { isChecked: value } );
52 | updateFullWidthFeaturedImage( value, meta );
53 | }
54 | }
55 | )
56 | )
57 | }
58 | }
59 |
60 | const composedFullWidthFeaturedImageCheckBox = wp.compose.compose( [
61 | withState( ( value ) => { isChecked: value } ),
62 | withSelect( ( select ) => {
63 | const currentMeta = select( 'core/editor' ).getCurrentPostAttribute( 'meta' );
64 | const editedMeta = select( 'core/editor' ).getEditedPostAttribute( 'meta' );
65 | return {
66 | meta: { ...currentMeta, ...editedMeta },
67 | };
68 | } ),
69 | withDispatch( ( dispatch ) => ( {
70 | updateFullWidthFeaturedImage( value, meta ) {
71 | meta = {
72 | ...meta,
73 | full_width_featured_image: value,
74 | };
75 | dispatch( 'core/editor' ).editPost( { meta } );
76 | },
77 | } ) ),
78 | ] )( FullWidthFeaturedImageCheckBox );
79 |
--------------------------------------------------------------------------------
/assets/js/navigation.js:
--------------------------------------------------------------------------------
1 | /**
2 | * navigation.js
3 | *
4 | * Handles toggling the navigation menu for small screens and enables tab
5 | * support for dropdown menus.
6 | */
7 | ( function() {
8 | var container, button, menu, links, subMenus;
9 |
10 | container = document.getElementById( 'site-navigation' );
11 |
12 | if ( ! container ) {
13 | return;
14 | }
15 |
16 | button = container.getElementsByTagName( 'button' )[0];
17 | if ( 'undefined' === typeof button ) {
18 | return;
19 | }
20 |
21 | menu = container.getElementsByTagName( 'ul' )[0];
22 |
23 | // Hide menu toggle button if menu is empty and return early.
24 | if ( 'undefined' === typeof menu ) {
25 | button.style.display = 'none';
26 | return;
27 | }
28 |
29 | menu.setAttribute( 'aria-expanded', 'false' );
30 | if ( -1 === menu.className.indexOf( 'nav-menu' ) ) {
31 | menu.className += ' nav-menu';
32 | }
33 |
34 | button.onclick = function() {
35 | if ( -1 !== container.className.indexOf( 'toggled' ) ) {
36 | container.className = container.className.replace( ' toggled', '' );
37 | button.setAttribute( 'aria-expanded', 'false' );
38 | menu.setAttribute( 'aria-expanded', 'false' );
39 | } else {
40 | container.className += ' toggled';
41 | button.setAttribute( 'aria-expanded', 'true' );
42 | menu.setAttribute( 'aria-expanded', 'true' );
43 | }
44 | };
45 |
46 | // Get all the link elements within the menu.
47 | links = menu.getElementsByTagName( 'a' );
48 | subMenus = menu.getElementsByTagName( 'ul' );
49 |
50 | // Set menu items with submenus to aria-haspopup="true".
51 | for ( var i = 0, len = subMenus.length; i < len; i++ ) {
52 | subMenus[i].parentNode.setAttribute( 'aria-haspopup', 'true' );
53 | }
54 |
55 | // Each time a menu link is focused or blurred, toggle focus.
56 | for ( i = 0, len = links.length; i < len; i++ ) {
57 | links[i].addEventListener( 'focus', toggleFocus, true );
58 | links[i].addEventListener( 'blur', toggleFocus, true );
59 | }
60 |
61 | /**
62 | * Sets or removes .focus class on an element.
63 | */
64 | function toggleFocus() {
65 | var self = this;
66 |
67 | // Move up through the ancestors of the current link until we hit .nav-menu.
68 | while ( -1 === self.className.indexOf( 'nav-menu' ) ) {
69 |
70 | // On li elements toggle the class .focus.
71 | if ( 'li' === self.tagName.toLowerCase() ) {
72 | if ( -1 !== self.className.indexOf( 'focus' ) ) {
73 | self.className = self.className.replace( ' focus', '' );
74 | } else {
75 | self.className += ' focus';
76 | }
77 | }
78 |
79 | self = self.parentElement;
80 | }
81 | }
82 | } )();
83 |
--------------------------------------------------------------------------------
/assets/js/share.js:
--------------------------------------------------------------------------------
1 | ( function() {
2 | entry_share = document.getElementById('entry-share');
3 |
4 | if ( ! entry_share ) {
5 | return false;
6 | }
7 |
8 | entry_share.onclick = function share() {
9 | if (navigator.share) {
10 | navigator.share(
11 | {
12 | title: document.querySelector('title').textContent,
13 | url: document.querySelector('link[rel="canonical"]').getAttribute('href')
14 | }
15 | );
16 | } else {
17 | var citation_options = document.getElementById('share-options');
18 | if (citation_options.style.display === 'none') {
19 | citation_options.style.display = 'block';
20 | } else {
21 | citation_options.style.display = 'none';
22 | }
23 | }
24 | return false;
25 | }
26 | })();
27 |
--------------------------------------------------------------------------------
/comments.php:
--------------------------------------------------------------------------------
1 |
14 |
18 |
27 |
28 |
29 |
30 |
31 |
40 |
41 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
42 |
47 |
48 |
49 |
60 |
61 | 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
62 |
67 |
68 |
69 |
70 |
71 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/composer.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "pfefferle/wordpress-autonomie",
3 | "description": "Pure Zen",
4 | "require": {
5 | "php": ">=5.6.0",
6 | "composer/installers": "~2.2"
7 | },
8 | "type": "wordpress-theme",
9 | "license": "MIT",
10 | "authors": [
11 | {
12 | "name": "Matthias Pfefferle",
13 | "homepage": "https://notiz.blog"
14 | }
15 | ],
16 | "extra": {
17 | "installer-name": "autonomie"
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
33 |
34 |
35 |
36 |
37 |
38 |