├── README.md └── themes ├── README.md ├── concise ├── README.md ├── assets │ └── js │ │ ├── general.js │ │ └── menu.js ├── concise.zip ├── front-page.php ├── functions.php ├── lib │ ├── customize.php │ ├── output.php │ └── theme-defaults.php ├── page_landing.php ├── screenshot.png ├── style.css └── style.css.map ├── letter ├── README.md ├── functions.php ├── images │ └── favicon.ico ├── js │ └── global.js ├── letter.zip ├── screenshot.png └── style.css └── minny-plus ├── README.md ├── front-page.php ├── functions.php ├── images └── logo.png ├── js └── main.js ├── lib ├── customize.php └── output.php ├── minny-plus.zip ├── screenshot.png └── style.css /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/README.md -------------------------------------------------------------------------------- /themes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/README.md -------------------------------------------------------------------------------- /themes/concise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/README.md -------------------------------------------------------------------------------- /themes/concise/assets/js/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/assets/js/general.js -------------------------------------------------------------------------------- /themes/concise/assets/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/assets/js/menu.js -------------------------------------------------------------------------------- /themes/concise/concise.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/concise.zip -------------------------------------------------------------------------------- /themes/concise/front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/front-page.php -------------------------------------------------------------------------------- /themes/concise/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/functions.php -------------------------------------------------------------------------------- /themes/concise/lib/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/lib/customize.php -------------------------------------------------------------------------------- /themes/concise/lib/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/lib/output.php -------------------------------------------------------------------------------- /themes/concise/lib/theme-defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/lib/theme-defaults.php -------------------------------------------------------------------------------- /themes/concise/page_landing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/page_landing.php -------------------------------------------------------------------------------- /themes/concise/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/screenshot.png -------------------------------------------------------------------------------- /themes/concise/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/style.css -------------------------------------------------------------------------------- /themes/concise/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/concise/style.css.map -------------------------------------------------------------------------------- /themes/letter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/README.md -------------------------------------------------------------------------------- /themes/letter/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/functions.php -------------------------------------------------------------------------------- /themes/letter/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/images/favicon.ico -------------------------------------------------------------------------------- /themes/letter/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/js/global.js -------------------------------------------------------------------------------- /themes/letter/letter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/letter.zip -------------------------------------------------------------------------------- /themes/letter/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/screenshot.png -------------------------------------------------------------------------------- /themes/letter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/letter/style.css -------------------------------------------------------------------------------- /themes/minny-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/README.md -------------------------------------------------------------------------------- /themes/minny-plus/front-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/front-page.php -------------------------------------------------------------------------------- /themes/minny-plus/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/functions.php -------------------------------------------------------------------------------- /themes/minny-plus/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/images/logo.png -------------------------------------------------------------------------------- /themes/minny-plus/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/js/main.js -------------------------------------------------------------------------------- /themes/minny-plus/lib/customize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/lib/customize.php -------------------------------------------------------------------------------- /themes/minny-plus/lib/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/lib/output.php -------------------------------------------------------------------------------- /themes/minny-plus/minny-plus.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/minny-plus.zip -------------------------------------------------------------------------------- /themes/minny-plus/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/screenshot.png -------------------------------------------------------------------------------- /themes/minny-plus/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjkoepke/free-genesis-themes/HEAD/themes/minny-plus/style.css --------------------------------------------------------------------------------