├── README.md ├── assets ├── fonts │ └── source-serif-pro │ │ ├── LICENSE.md │ │ ├── SourceSerif4Variable-Italic.otf.woff2 │ │ ├── SourceSerif4Variable-Italic.ttf.woff2 │ │ ├── SourceSerif4Variable-Roman.otf.woff2 │ │ └── SourceSerif4Variable-Roman.ttf.woff2 ├── frontenberg-black-square.png ├── frontenberg-white-square.png ├── frontenberg-white-square.svg ├── frontenberg-white.svg ├── frontenberg.svg └── screenshot-white.png ├── edit-form-blocks.php ├── footer.php ├── functions.php ├── header.php ├── includes ├── jetpack.php ├── navigation.php ├── restrictions.php ├── shims.php └── widgets.php ├── index.php ├── screenshot.png ├── style.css └── theme.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/fonts/source-serif-pro/LICENSE.md -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.otf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Italic.ttf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.otf.woff2 -------------------------------------------------------------------------------- /assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/fonts/source-serif-pro/SourceSerif4Variable-Roman.ttf.woff2 -------------------------------------------------------------------------------- /assets/frontenberg-black-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/frontenberg-black-square.png -------------------------------------------------------------------------------- /assets/frontenberg-white-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/frontenberg-white-square.png -------------------------------------------------------------------------------- /assets/frontenberg-white-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/frontenberg-white-square.svg -------------------------------------------------------------------------------- /assets/frontenberg-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/frontenberg-white.svg -------------------------------------------------------------------------------- /assets/frontenberg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/frontenberg.svg -------------------------------------------------------------------------------- /assets/screenshot-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/assets/screenshot-white.png -------------------------------------------------------------------------------- /edit-form-blocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/edit-form-blocks.php -------------------------------------------------------------------------------- /footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/footer.php -------------------------------------------------------------------------------- /functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/functions.php -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/header.php -------------------------------------------------------------------------------- /includes/jetpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/includes/jetpack.php -------------------------------------------------------------------------------- /includes/navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/includes/navigation.php -------------------------------------------------------------------------------- /includes/restrictions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/includes/restrictions.php -------------------------------------------------------------------------------- /includes/shims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/includes/shims.php -------------------------------------------------------------------------------- /includes/widgets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomjn/Frontenberg/HEAD/includes/widgets.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 |