├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc-css.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/.stylelintrc-css.json -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/.svnignore -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/404.php -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/archive.php -------------------------------------------------------------------------------- /author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/author.php -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/comments.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/composer.json -------------------------------------------------------------------------------- /css/blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/blocks.css -------------------------------------------------------------------------------- /css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/default.css -------------------------------------------------------------------------------- /css/default.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/default.css.map -------------------------------------------------------------------------------- /css/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/default.min.css -------------------------------------------------------------------------------- /css/default.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/default.min.css.map -------------------------------------------------------------------------------- /css/editor-blocks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/editor-blocks.css -------------------------------------------------------------------------------- /css/editor-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/css/editor-style.css -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/footer.php -------------------------------------------------------------------------------- /front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/front-page.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/functions.php -------------------------------------------------------------------------------- /hcard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/hcard.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/header.php -------------------------------------------------------------------------------- /image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/image.php -------------------------------------------------------------------------------- /inc/back-compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/back-compat.php -------------------------------------------------------------------------------- /inc/block-patterns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/block-patterns.php -------------------------------------------------------------------------------- /inc/customizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/customizer.php -------------------------------------------------------------------------------- /inc/plugin-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/plugin-support.php -------------------------------------------------------------------------------- /inc/template-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/template-functions.php -------------------------------------------------------------------------------- /inc/template-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/inc/template-tags.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/index.php -------------------------------------------------------------------------------- /js/customize-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/js/customize-preview.js -------------------------------------------------------------------------------- /js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/js/functions.js -------------------------------------------------------------------------------- /js/keyboard-image-navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/js/keyboard-image-navigation.js -------------------------------------------------------------------------------- /js/skip-link-focus-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/js/skip-link-focus-fix.js -------------------------------------------------------------------------------- /kind-photos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/kind-photos.php -------------------------------------------------------------------------------- /languages/iw26.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/languages/iw26.pot -------------------------------------------------------------------------------- /originalofform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/originalofform.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/package.json -------------------------------------------------------------------------------- /page-location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/page-location.php -------------------------------------------------------------------------------- /page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/page.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/phpcs.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/readme.txt -------------------------------------------------------------------------------- /rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/rtl.css -------------------------------------------------------------------------------- /sass/_accessibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_accessibility.scss -------------------------------------------------------------------------------- /sass/_alignments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_alignments.scss -------------------------------------------------------------------------------- /sass/_clearings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_clearings.scss -------------------------------------------------------------------------------- /sass/_elements.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_elements.scss -------------------------------------------------------------------------------- /sass/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_forms.scss -------------------------------------------------------------------------------- /sass/_multisite.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_multisite.scss -------------------------------------------------------------------------------- /sass/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_normalize.scss -------------------------------------------------------------------------------- /sass/_plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_plugin.scss -------------------------------------------------------------------------------- /sass/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_print.scss -------------------------------------------------------------------------------- /sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_typography.scss -------------------------------------------------------------------------------- /sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_variables.scss -------------------------------------------------------------------------------- /sass/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/_widgets.scss -------------------------------------------------------------------------------- /sass/content/_archives.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_archives.scss -------------------------------------------------------------------------------- /sass/content/_comments.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_comments.scss -------------------------------------------------------------------------------- /sass/content/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_content.scss -------------------------------------------------------------------------------- /sass/content/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_footer.scss -------------------------------------------------------------------------------- /sass/content/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_header.scss -------------------------------------------------------------------------------- /sass/content/_post-formats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_post-formats.scss -------------------------------------------------------------------------------- /sass/content/_posts_and_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/content/_posts_and_pages.scss -------------------------------------------------------------------------------- /sass/content/_sidebar.scss: -------------------------------------------------------------------------------- 1 | .sidebar { 2 | margin-bottom: 3.5em; 3 | padding: 0 7.6923%; 4 | } 5 | -------------------------------------------------------------------------------- /sass/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/default.scss -------------------------------------------------------------------------------- /sass/media/_captions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/media/_captions.scss -------------------------------------------------------------------------------- /sass/media/_galleries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/media/_galleries.scss -------------------------------------------------------------------------------- /sass/media/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/media/_grid.scss -------------------------------------------------------------------------------- /sass/media/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/media/_media.scss -------------------------------------------------------------------------------- /sass/navigation/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/navigation/_links.scss -------------------------------------------------------------------------------- /sass/navigation/_menus.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/navigation/_menus.scss -------------------------------------------------------------------------------- /sass/navigation/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/navigation/_navigation.scss -------------------------------------------------------------------------------- /sass/queries/_1200.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_1200.scss -------------------------------------------------------------------------------- /sass/queries/_710.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_710.scss -------------------------------------------------------------------------------- /sass/queries/_783.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_783.scss -------------------------------------------------------------------------------- /sass/queries/_910.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_910.scss -------------------------------------------------------------------------------- /sass/queries/_985.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_985.scss -------------------------------------------------------------------------------- /sass/queries/_darkmode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_darkmode.scss -------------------------------------------------------------------------------- /sass/queries/_queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sass/queries/_queries.scss -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/screenshot.png -------------------------------------------------------------------------------- /search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/search.php -------------------------------------------------------------------------------- /searchform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/searchform.php -------------------------------------------------------------------------------- /sidebar-content-bottom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sidebar-content-bottom.php -------------------------------------------------------------------------------- /sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/sidebar.php -------------------------------------------------------------------------------- /single-venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/single-venue.php -------------------------------------------------------------------------------- /single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/single.php -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/style.css -------------------------------------------------------------------------------- /svg/activity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/activity.svg -------------------------------------------------------------------------------- /svg/anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/anchor.svg -------------------------------------------------------------------------------- /svg/aside.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/aside.svg -------------------------------------------------------------------------------- /svg/attachment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/attachment.svg -------------------------------------------------------------------------------- /svg/audio-mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/audio-mute.svg -------------------------------------------------------------------------------- /svg/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/audio.svg -------------------------------------------------------------------------------- /svg/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/bold.svg -------------------------------------------------------------------------------- /svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/book.svg -------------------------------------------------------------------------------- /svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/bug.svg -------------------------------------------------------------------------------- /svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/cart.svg -------------------------------------------------------------------------------- /svg/category.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/category.svg -------------------------------------------------------------------------------- /svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/chat.svg -------------------------------------------------------------------------------- /svg/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/checkmark.svg -------------------------------------------------------------------------------- /svg/close-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/close-alt.svg -------------------------------------------------------------------------------- /svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/close.svg -------------------------------------------------------------------------------- /svg/cloud-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/cloud-download.svg -------------------------------------------------------------------------------- /svg/cloud-upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/cloud-upload.svg -------------------------------------------------------------------------------- /svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/cloud.svg -------------------------------------------------------------------------------- /svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/code.svg -------------------------------------------------------------------------------- /svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/cog.svg -------------------------------------------------------------------------------- /svg/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/collapse.svg -------------------------------------------------------------------------------- /svg/comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/comment.svg -------------------------------------------------------------------------------- /svg/day.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/day.svg -------------------------------------------------------------------------------- /svg/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/document.svg -------------------------------------------------------------------------------- /svg/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/download.svg -------------------------------------------------------------------------------- /svg/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/edit.svg -------------------------------------------------------------------------------- /svg/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/ellipsis.svg -------------------------------------------------------------------------------- /svg/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/expand.svg -------------------------------------------------------------------------------- /svg/external.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/external.svg -------------------------------------------------------------------------------- /svg/fastforward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/fastforward.svg -------------------------------------------------------------------------------- /svg/feed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/feed.svg -------------------------------------------------------------------------------- /svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/flag.svg -------------------------------------------------------------------------------- /svg/fullscreen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/fullscreen.svg -------------------------------------------------------------------------------- /svg/gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/gallery.svg -------------------------------------------------------------------------------- /svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/heart.svg -------------------------------------------------------------------------------- /svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/help.svg -------------------------------------------------------------------------------- /svg/hide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/hide.svg -------------------------------------------------------------------------------- /svg/hierarchy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/hierarchy.svg -------------------------------------------------------------------------------- /svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/home.svg -------------------------------------------------------------------------------- /svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/image.svg -------------------------------------------------------------------------------- /svg/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/info.svg -------------------------------------------------------------------------------- /svg/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/italic.svg -------------------------------------------------------------------------------- /svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/key.svg -------------------------------------------------------------------------------- /svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/link.svg -------------------------------------------------------------------------------- /svg/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/location.svg -------------------------------------------------------------------------------- /svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/lock.svg -------------------------------------------------------------------------------- /svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/mail.svg -------------------------------------------------------------------------------- /svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/menu.svg -------------------------------------------------------------------------------- /svg/microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/microphone.svg -------------------------------------------------------------------------------- /svg/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/minus.svg -------------------------------------------------------------------------------- /svg/month.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/month.svg -------------------------------------------------------------------------------- /svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/move.svg -------------------------------------------------------------------------------- /svg/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/next.svg -------------------------------------------------------------------------------- /svg/notice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/notice.svg -------------------------------------------------------------------------------- /svg/paintbrush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/paintbrush.svg -------------------------------------------------------------------------------- /svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/pause.svg -------------------------------------------------------------------------------- /svg/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/phone.svg -------------------------------------------------------------------------------- /svg/picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/picture.svg -------------------------------------------------------------------------------- /svg/pinned.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/pinned.svg -------------------------------------------------------------------------------- /svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/play.svg -------------------------------------------------------------------------------- /svg/plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/plugin.svg -------------------------------------------------------------------------------- /svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/plus.svg -------------------------------------------------------------------------------- /svg/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/previous.svg -------------------------------------------------------------------------------- /svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/print.svg -------------------------------------------------------------------------------- /svg/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/quote.svg -------------------------------------------------------------------------------- /svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/refresh.svg -------------------------------------------------------------------------------- /svg/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/reply.svg -------------------------------------------------------------------------------- /svg/rewind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/rewind.svg -------------------------------------------------------------------------------- /svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/search.svg -------------------------------------------------------------------------------- /svg/send-to-phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/send-to-phone.svg -------------------------------------------------------------------------------- /svg/send-to-tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/send-to-tablet.svg -------------------------------------------------------------------------------- /svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/share.svg -------------------------------------------------------------------------------- /svg/show.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/show.svg -------------------------------------------------------------------------------- /svg/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/shuffle.svg -------------------------------------------------------------------------------- /svg/sitemap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/sitemap.svg -------------------------------------------------------------------------------- /svg/skip-ahead.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/skip-ahead.svg -------------------------------------------------------------------------------- /svg/skip-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/skip-back.svg -------------------------------------------------------------------------------- /svg/spam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/spam.svg -------------------------------------------------------------------------------- /svg/standard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/standard.svg -------------------------------------------------------------------------------- /svg/star-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/star-empty.svg -------------------------------------------------------------------------------- /svg/star-half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/star-half.svg -------------------------------------------------------------------------------- /svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/star.svg -------------------------------------------------------------------------------- /svg/status.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/status.svg -------------------------------------------------------------------------------- /svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/stop.svg -------------------------------------------------------------------------------- /svg/subscribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/subscribe.svg -------------------------------------------------------------------------------- /svg/subscribed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/subscribed.svg -------------------------------------------------------------------------------- /svg/summary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/summary.svg -------------------------------------------------------------------------------- /svg/tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/tablet.svg -------------------------------------------------------------------------------- /svg/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/tag.svg -------------------------------------------------------------------------------- /svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/time.svg -------------------------------------------------------------------------------- /svg/top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/top.svg -------------------------------------------------------------------------------- /svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/trash.svg -------------------------------------------------------------------------------- /svg/unapprove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/unapprove.svg -------------------------------------------------------------------------------- /svg/unsubscribe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/unsubscribe.svg -------------------------------------------------------------------------------- /svg/unzoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/unzoom.svg -------------------------------------------------------------------------------- /svg/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/user.svg -------------------------------------------------------------------------------- /svg/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/video.svg -------------------------------------------------------------------------------- /svg/videocamera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/videocamera.svg -------------------------------------------------------------------------------- /svg/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/warning.svg -------------------------------------------------------------------------------- /svg/website.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/website.svg -------------------------------------------------------------------------------- /svg/week.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/week.svg -------------------------------------------------------------------------------- /svg/xpost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/xpost.svg -------------------------------------------------------------------------------- /svg/zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/svg/zoom.svg -------------------------------------------------------------------------------- /taxonomy-kind-photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/taxonomy-kind-photo.php -------------------------------------------------------------------------------- /taxonomy-kind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/taxonomy-kind.php -------------------------------------------------------------------------------- /template-parts/biography.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/biography.php -------------------------------------------------------------------------------- /template-parts/content-none.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-none.php -------------------------------------------------------------------------------- /template-parts/content-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-page.php -------------------------------------------------------------------------------- /template-parts/content-search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-search.php -------------------------------------------------------------------------------- /template-parts/content-single.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-single.php -------------------------------------------------------------------------------- /template-parts/content-summary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-summary.php -------------------------------------------------------------------------------- /template-parts/content-venue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content-venue.php -------------------------------------------------------------------------------- /template-parts/content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshanske/iw26/HEAD/template-parts/content.php --------------------------------------------------------------------------------