25 | 26 | 27 | 28 | 29 | 34 |
43 |
54 | 55 | 56 | 57 | 58 | 63 |
├── .stylelintignore ├── .stylelintrc-css.json ├── .stylelintrc.json ├── .svnignore ├── 404.php ├── Gruntfile.js ├── archive.php ├── author.php ├── comments.php ├── composer.json ├── css ├── blocks.css ├── default.css ├── default.css.map ├── default.min.css ├── default.min.css.map ├── editor-blocks.css └── editor-style.css ├── footer.php ├── front-page.php ├── functions.php ├── hcard.php ├── header.php ├── image.php ├── inc ├── back-compat.php ├── block-patterns.php ├── customizer.php ├── plugin-support.php ├── template-functions.php └── template-tags.php ├── index.php ├── js ├── customize-preview.js ├── functions.js ├── keyboard-image-navigation.js └── skip-link-focus-fix.js ├── kind-photos.php ├── languages └── iw26.pot ├── originalofform.php ├── package.json ├── page-location.php ├── page.php ├── phpcs.xml ├── readme.md ├── readme.txt ├── rtl.css ├── sass ├── _accessibility.scss ├── _alignments.scss ├── _clearings.scss ├── _elements.scss ├── _forms.scss ├── _multisite.scss ├── _normalize.scss ├── _plugin.scss ├── _print.scss ├── _typography.scss ├── _variables.scss ├── _widgets.scss ├── content │ ├── _archives.scss │ ├── _comments.scss │ ├── _content.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _post-formats.scss │ ├── _posts_and_pages.scss │ └── _sidebar.scss ├── default.scss ├── media │ ├── _captions.scss │ ├── _galleries.scss │ ├── _grid.scss │ └── _media.scss ├── navigation │ ├── _links.scss │ ├── _menus.scss │ └── _navigation.scss └── queries │ ├── _1200.scss │ ├── _710.scss │ ├── _783.scss │ ├── _910.scss │ ├── _985.scss │ ├── _darkmode.scss │ └── _queries.scss ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar-content-bottom.php ├── sidebar.php ├── single-venue.php ├── single.php ├── style.css ├── svg ├── activity.svg ├── anchor.svg ├── aside.svg ├── attachment.svg ├── audio-mute.svg ├── audio.svg ├── bold.svg ├── book.svg ├── bug.svg ├── cart.svg ├── category.svg ├── chat.svg ├── checkmark.svg ├── close-alt.svg ├── close.svg ├── cloud-download.svg ├── cloud-upload.svg ├── cloud.svg ├── code.svg ├── cog.svg ├── collapse.svg ├── comment.svg ├── day.svg ├── document.svg ├── download.svg ├── edit.svg ├── ellipsis.svg ├── expand.svg ├── external.svg ├── fastforward.svg ├── feed.svg ├── flag.svg ├── fullscreen.svg ├── gallery.svg ├── heart.svg ├── help.svg ├── hide.svg ├── hierarchy.svg ├── home.svg ├── image.svg ├── info.svg ├── italic.svg ├── key.svg ├── link.svg ├── location.svg ├── lock.svg ├── mail.svg ├── menu.svg ├── microphone.svg ├── minus.svg ├── month.svg ├── move.svg ├── next.svg ├── notice.svg ├── paintbrush.svg ├── pause.svg ├── phone.svg ├── picture.svg ├── pinned.svg ├── play.svg ├── plugin.svg ├── plus.svg ├── previous.svg ├── print.svg ├── quote.svg ├── refresh.svg ├── reply.svg ├── rewind.svg ├── search.svg ├── send-to-phone.svg ├── send-to-tablet.svg ├── share.svg ├── show.svg ├── shuffle.svg ├── sitemap.svg ├── skip-ahead.svg ├── skip-back.svg ├── spam.svg ├── standard.svg ├── star-empty.svg ├── star-half.svg ├── star.svg ├── status.svg ├── stop.svg ├── subscribe.svg ├── subscribed.svg ├── summary.svg ├── tablet.svg ├── tag.svg ├── time.svg ├── top.svg ├── trash.svg ├── unapprove.svg ├── unsubscribe.svg ├── unzoom.svg ├── user.svg ├── video.svg ├── videocamera.svg ├── warning.svg ├── website.svg ├── week.svg ├── xpost.svg └── zoom.svg ├── taxonomy-kind-photo.php ├── taxonomy-kind.php └── template-parts ├── biography.php ├── content-none.php ├── content-page.php ├── content-search.php ├── content-single.php ├── content-summary.php ├── content-venue.php └── content.php /.stylelintignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | node_modules/ 3 | assets/images 4 | *.php 5 | *.map 6 | *.png 7 | *.json 8 | LICENSE 9 | composer.lock 10 | *.txt 11 | -------------------------------------------------------------------------------- /.stylelintrc-css.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "stylelint-config-wordpress" 4 | ], 5 | "rules": { 6 | "indentation": "tab", 7 | "no-duplicate-selectors": null, 8 | "function-url-quotes": null, 9 | "selector-attribute-quotes": null, 10 | "declaration-block-no-duplicate-properties": null, 11 | "function-calc-no-unspaced-operator": null, 12 | "selector-pseudo-class-no-unknown": null, 13 | "selector-class-pattern": null, 14 | "font-weight-notation": null, 15 | "selector-type-no-unknown": null, 16 | "max-line-length": null, 17 | "at-rule-empty-line-before": null, 18 | "selector-pseudo-element-colon-notation": null, 19 | "number-leading-zero": null, 20 | "no-descending-specificity": null 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@wordpress/stylelint-config" 4 | ], 5 | "rules": { 6 | "selector-class-pattern": null, 7 | "font-weight-notation": null, 8 | "selector-type-no-unknown": null, 9 | "max-line-length": null, 10 | "at-rule-empty-line-before": null, 11 | "selector-pseudo-element-colon-notation": null, 12 | "number-leading-zero": null, 13 | "no-descending-specificity": null 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .editorconfig 3 | .git 4 | .gitignore 5 | .travis.yml 6 | Gruntfile.js 7 | LINGUAS 8 | Makefile 9 | README.md 10 | _site 11 | bin 12 | sass 13 | composer.json 14 | composer.lock 15 | docker-compose.yml 16 | gulpfile.js 17 | package.json 18 | npm-debug.log 19 | phpcs.xml 20 | package.json 21 | phpunit.xml 22 | phpunit.xml.dist 23 | tests 24 | -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |
27 | 44 |
45 | 46 | 47 | 48 |49 | 'ol', 53 | 'short_ping' => true, 54 | 'avatar_size' => 42, 55 | ) 56 | ); 57 | ?> 58 |
59 | 60 | 61 | 62 | 63 | 64 | 68 | 69 | 70 | 71 | '', 75 | 'title_reply_after' => '
', 76 | ) 77 | ); 78 | ?> 79 | 80 |