├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/404.php -------------------------------------------------------------------------------- /500.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/500.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/LICENSE -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/archive.php -------------------------------------------------------------------------------- /assets/css/default-width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/default-width.css -------------------------------------------------------------------------------- /assets/css/default-width.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/default-width.css.map -------------------------------------------------------------------------------- /assets/css/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/editor-style.css -------------------------------------------------------------------------------- /assets/css/editor-style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/editor-style.css.map -------------------------------------------------------------------------------- /assets/css/narrow-width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/narrow-width.css -------------------------------------------------------------------------------- /assets/css/narrow-width.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/narrow-width.css.map -------------------------------------------------------------------------------- /assets/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/print.css -------------------------------------------------------------------------------- /assets/css/print.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/print.css.map -------------------------------------------------------------------------------- /assets/css/wide-width.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/wide-width.css -------------------------------------------------------------------------------- /assets/css/wide-width.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/css/wide-width.css.map -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300.eot -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300.svg -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300.woff -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300.woff2 -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300italic.eot -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300italic.svg -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300italic.woff -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-300italic.woff2 -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700.eot -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700.svg -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700.woff -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700.woff2 -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700italic.eot -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700italic.svg -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700italic.woff -------------------------------------------------------------------------------- /assets/font/lato/lato-v13-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/lato/lato-v13-latin-700italic.woff2 -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300.eot -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300.svg -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300.woff -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300.woff2 -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300italic.eot -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300italic.svg -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300italic.woff -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-300italic.woff2 -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700.eot -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700.svg -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700.woff -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700.woff2 -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700italic.eot -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700italic.svg -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700italic.woff -------------------------------------------------------------------------------- /assets/font/merriweather/merriweather-v15-latin-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/merriweather/merriweather-v15-latin-700italic.woff2 -------------------------------------------------------------------------------- /assets/font/openwebicons/openwebicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/openwebicons/openwebicons.eot -------------------------------------------------------------------------------- /assets/font/openwebicons/openwebicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/openwebicons/openwebicons.svg -------------------------------------------------------------------------------- /assets/font/openwebicons/openwebicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/openwebicons/openwebicons.ttf -------------------------------------------------------------------------------- /assets/font/openwebicons/openwebicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/openwebicons/openwebicons.woff -------------------------------------------------------------------------------- /assets/font/openwebicons/openwebicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/font/openwebicons/openwebicons.woff2 -------------------------------------------------------------------------------- /assets/images/beach.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/images/beach.jpeg -------------------------------------------------------------------------------- /assets/images/lights.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/images/lights.jpeg -------------------------------------------------------------------------------- /assets/images/sea.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/images/sea.jpeg -------------------------------------------------------------------------------- /assets/js/block-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/js/block-editor.js -------------------------------------------------------------------------------- /assets/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/js/navigation.js -------------------------------------------------------------------------------- /assets/js/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/assets/js/share.js -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/comments.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/composer.json -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/header.php -------------------------------------------------------------------------------- /image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/image.php -------------------------------------------------------------------------------- /includes/compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/compat.php -------------------------------------------------------------------------------- /includes/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/customizer.php -------------------------------------------------------------------------------- /includes/featured-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/featured-image.php -------------------------------------------------------------------------------- /includes/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/feed.php -------------------------------------------------------------------------------- /includes/semantics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/semantics.php -------------------------------------------------------------------------------- /includes/template-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/template-functions.php -------------------------------------------------------------------------------- /includes/webactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/webactions.php -------------------------------------------------------------------------------- /includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/includes/widgets.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/index.php -------------------------------------------------------------------------------- /integrations/activitypub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/integrations/activitypub.php -------------------------------------------------------------------------------- /integrations/post-kinds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/integrations/post-kinds.php -------------------------------------------------------------------------------- /integrations/syndication-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/integrations/syndication-links.php -------------------------------------------------------------------------------- /languages/autonomie.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/languages/autonomie.pot -------------------------------------------------------------------------------- /languages/de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/languages/de_DE.mo -------------------------------------------------------------------------------- /languages/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/languages/de_DE.po -------------------------------------------------------------------------------- /languages/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/languages/nl_NL.po -------------------------------------------------------------------------------- /offline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/offline.php -------------------------------------------------------------------------------- /page-now.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/page-now.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/page.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/screenshot.png -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/sidebar.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/style.css -------------------------------------------------------------------------------- /style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/style.css.map -------------------------------------------------------------------------------- /template-parts/entry-author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-author.php -------------------------------------------------------------------------------- /template-parts/entry-footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-footer.php -------------------------------------------------------------------------------- /template-parts/entry-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-header.php -------------------------------------------------------------------------------- /template-parts/entry-nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-nav.php -------------------------------------------------------------------------------- /template-parts/entry-share.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-share.php -------------------------------------------------------------------------------- /template-parts/entry-taxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/entry-taxonomy.php -------------------------------------------------------------------------------- /template-parts/page-banner-author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/page-banner-author.php -------------------------------------------------------------------------------- /template-parts/page-banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/template-parts/page-banner.php -------------------------------------------------------------------------------- /templates/content-aside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-aside.php -------------------------------------------------------------------------------- /templates/content-audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-audio.php -------------------------------------------------------------------------------- /templates/content-chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-chat.php -------------------------------------------------------------------------------- /templates/content-gallery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-gallery.php -------------------------------------------------------------------------------- /templates/content-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-image.php -------------------------------------------------------------------------------- /templates/content-link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-link.php -------------------------------------------------------------------------------- /templates/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-page.php -------------------------------------------------------------------------------- /templates/content-quote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-quote.php -------------------------------------------------------------------------------- /templates/content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-single.php -------------------------------------------------------------------------------- /templates/content-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-status.php -------------------------------------------------------------------------------- /templates/content-video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content-video.php -------------------------------------------------------------------------------- /templates/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/templates/content.php -------------------------------------------------------------------------------- /widgets/class-autonomie-author-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/widgets/class-autonomie-author-widget.php -------------------------------------------------------------------------------- /widgets/class-autonomie-taxonomy-widget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pfefferle/autonomie/HEAD/widgets/class-autonomie-taxonomy-widget.php --------------------------------------------------------------------------------