├── .gitignore ├── README.md ├── config.rb ├── inlined └── email.html ├── sass ├── _client-fixes.scss ├── _mobile-grid.scss ├── _typography.scss ├── _variables.scss └── email.scss ├── stylesheets └── email.css └── templates └── email.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/README.md -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/config.rb -------------------------------------------------------------------------------- /inlined/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/inlined/email.html -------------------------------------------------------------------------------- /sass/_client-fixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/sass/_client-fixes.scss -------------------------------------------------------------------------------- /sass/_mobile-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/sass/_mobile-grid.scss -------------------------------------------------------------------------------- /sass/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/sass/_typography.scss -------------------------------------------------------------------------------- /sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/sass/_variables.scss -------------------------------------------------------------------------------- /sass/email.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/sass/email.scss -------------------------------------------------------------------------------- /stylesheets/email.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/stylesheets/email.css -------------------------------------------------------------------------------- /templates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Omgitsonlyalex/ZenithFramework/HEAD/templates/email.html --------------------------------------------------------------------------------