------------------------------------------ FOLDER STRUCTURE ------------------------------------------ main/ ├── 404.php ├── archive.php ├── author.php ├── comments.php ├── footer.php ├── functions.php ├── header.php ├── index.php ├── page.php ├── README.txt ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar.php ├── single.php ├── style.css ├── style.scss ├── languages/ │ ├── affyb.pot │ ├── it_IT.mo │ └── it_IT.po ├── template-parts/ │ ├── header/ │ │ ├── header-button.php │ │ ├── header-social-navigation.php │ │ ├── site-branding.php │ │ └── header-searchform.php │ ├── footer/ │ │ └── footer-widgets.php │ ├── navigation/ │ │ ├── page-link-navigation.php │ │ ├── post-pagination.php │ │ └── navigation-main.php │ ├── post/ │ │ ├── content-post-none.php │ │ └── content-post.php │ ├── page/ │ │ └── content-page.php ├── inc/ │ └── affyb-options.php └── assets/ ├── css/ │ ├── theme/ │ │ └── scss/ │ │ ├── style.scss │ │ ├── 01-variables.scss │ │ ├── 02-base-reset.scss │ │ ├── 03-reset.scss │ │ ├── 04-main.scss │ │ ├── 05-common.scss │ │ ├── 06-header.scss │ │ ├── 07-navigation.scss │ │ ├── 08-form.scss │ │ ├── 09-layout.scss │ │ ├── 10-page.scss │ │ ├── 11-post.scss │ │ ├── 12-sidebar.scss │ │ ├── 13-footer.scss │ │ ├── 14-comment.scss │ │ ├── 15-media-query.scss │ │ └── 16-print.scss │ └── other/ │ ├── affyb-options.css │ ├── editor-style.css │ ├── style-login.css │ └── scss/ │ ├── affyb-options.scss │ ├── editor-style.scss │ └── style-login.scss ├── fonts/ │ ├── Slabo27px-Regular.eot │ ├── Slabo27px-Regular.otf │ ├── Slabo27px-Regular.svg │ ├── Slabo27px-Regular.ttf │ ├── Slabo27px-Regular.woff │ └── Slabo27px-Regularg.woff2 ├── images/ │ ├── logo-login.png │ ├── menu.png │ ├── search.png │ ├── search-submit.png │ ├── share.png │ └── social-icons/ │ ├── facebook.png │ ├── google-plus.png │ ├── instagram.png │ ├── linkedin.png │ └── twitter.png └── js/ ├── scripts.js ├── style-login.js └── vendor/ └── jquery-validate.js ------------------------------------------ TEMPLATE DESCRIPTION ------------------------------------------ 404.php archive.php author.php comments.php footer.php header.php index.php page.php search.php sidebar.php single.php ------------------------------------------ SCSS DESCRIPTION ------------------------------------------ style.scss 01-variables.scss 02-base-reset.scss 03-reset.scss 04-main.scss 05-common.scss 06-header.scss 07-navigation.scss 08-form.scss 09-layout.scss 10-page.scss 11-post.scss 12-sidebar.scss 13-footer.scss 14-comment.scss 15-media-query.scss 16-print.scss ------------------------------------------ JAVASCRIPTS DESCRIPTION ------------------------------------------ scripts.js main javascript for the theme style-login.js javascript for the included custom login page jquery-validate.js used for validating the comment form