├── public ├── wp-content │ ├── uploads │ │ └── .gitkeep │ ├── index.php │ ├── plugins │ │ └── index.php │ └── themes │ │ ├── index.php │ │ └── twentyseventeen │ │ ├── screenshot.png │ │ ├── assets │ │ ├── images │ │ │ ├── coffee.jpg │ │ │ ├── espresso.jpg │ │ │ ├── header.jpg │ │ │ └── sandwich.jpg │ │ ├── js │ │ │ ├── skip-link-focus-fix.js │ │ │ ├── customize-controls.js │ │ │ ├── navigation.js │ │ │ ├── customize-preview.js │ │ │ ├── jquery.scrollTo.js │ │ │ ├── global.js │ │ │ └── html5.js │ │ └── css │ │ │ ├── ie9.css │ │ │ ├── ie8.css │ │ │ ├── editor-style.css │ │ │ └── colors-dark.css │ │ ├── template-parts │ │ ├── header │ │ │ ├── header-image.php │ │ │ └── site-branding.php │ │ ├── footer │ │ │ ├── site-info.php │ │ │ └── footer-widgets.php │ │ ├── page │ │ │ ├── content-page.php │ │ │ ├── content-front-page.php │ │ │ └── content-front-page-panels.php │ │ ├── post │ │ │ ├── content-none.php │ │ │ ├── content-excerpt.php │ │ │ ├── content.php │ │ │ ├── content-image.php │ │ │ ├── content-gallery.php │ │ │ ├── content-audio.php │ │ │ └── content-video.php │ │ └── navigation │ │ │ └── navigation-top.php │ │ ├── sidebar.php │ │ ├── searchform.php │ │ ├── 404.php │ │ ├── page.php │ │ ├── footer.php │ │ ├── front-page.php │ │ ├── single.php │ │ ├── archive.php │ │ ├── header.php │ │ ├── search.php │ │ ├── index.php │ │ ├── inc │ │ ├── back-compat.php │ │ ├── template-functions.php │ │ ├── custom-header.php │ │ ├── template-tags.php │ │ ├── customizer.php │ │ └── icon-functions.php │ │ ├── comments.php │ │ ├── README.txt │ │ ├── rtl.css │ │ └── functions.php ├── index.php └── wp-config.php ├── .gitignore ├── README.md ├── composer.json ├── local-config.sample.php ├── LICENSE └── composer.lock /public/wp-content/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/wp-content/index.php: -------------------------------------------------------------------------------- 1 | 12 |
Get started here.', 'twentyseventeen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?>
24 | 25 | 26 | 27 | 28 | 32 |