├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html ├── header.html ├── header_about.html ├── header_post.html ├── nav.html ├── post.html └── posts.html ├── _layouts ├── default.html ├── home.html ├── page.html └── post.html ├── _posts └── 2024-01-01-how-to-use-wead.md ├── _sass ├── _footer.sass ├── _header.sass ├── _post.sass └── _posts.sass ├── about.md ├── assets ├── js │ └── main.js └── stylesheets │ ├── bootstrap.min.css │ ├── main.scss │ ├── responsive.css │ └── syntax.css ├── index.html └── wead.gemspec /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/header_about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/header_about.html -------------------------------------------------------------------------------- /_includes/header_post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/header_post.html -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/nav.html -------------------------------------------------------------------------------- /_includes/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/post.html -------------------------------------------------------------------------------- /_includes/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_includes/posts.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_layouts/post.html -------------------------------------------------------------------------------- /_posts/2024-01-01-how-to-use-wead.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_posts/2024-01-01-how-to-use-wead.md -------------------------------------------------------------------------------- /_sass/_footer.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_sass/_footer.sass -------------------------------------------------------------------------------- /_sass/_header.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_sass/_header.sass -------------------------------------------------------------------------------- /_sass/_post.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_sass/_post.sass -------------------------------------------------------------------------------- /_sass/_posts.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/_sass/_posts.sass -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/about.md -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/assets/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /assets/stylesheets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/assets/stylesheets/main.scss -------------------------------------------------------------------------------- /assets/stylesheets/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/assets/stylesheets/responsive.css -------------------------------------------------------------------------------- /assets/stylesheets/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/assets/stylesheets/syntax.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- 4 | -------------------------------------------------------------------------------- /wead.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevyder/wead/HEAD/wead.gemspec --------------------------------------------------------------------------------