Hello fellow Owlins! Welcome to the hompage repository of the Sleepy Owls. You can find the hosted version of our website at
https://www.sleepyowls.de
| .bundle | ||
| _data | ||
| _includes | ||
| _layouts | ||
| _posts | ||
| _sass | ||
| assets | ||
| .gitignore | ||
| 404.html | ||
| _config.yml | ||
| favicon-16x16.png | ||
| favicon-32x32.png | ||
| favicon.ico | ||
| Gemfile | ||
| Gemfile.lock | ||
| index.md | ||
| LICENSE.md | ||
| members.de.html | ||
| members.en.html | ||
| projects.de.html | ||
| projects.en.html | ||
| README.md | ||
SleepyOwls Website Instructions
Installing Jekyll
Prerequisites
- Ruby version 2.7.0 or higher, including all development headers (check your Ruby version using
ruby -v) - RubyGems (check your Gems version using
gem -v) - GCC and Make (check versions using
gcc -v,g++ -vandmake -v)
For detailed install instructions, follow the guides provided by Jekyll.
Installing Jekyll
- Install all prerequisites
- Install the jekyll and bundler gems.
gem install jekyll bundler
- Check your Jekyll version using
jekyll -v - Check your Bundler version using
bundle -v
Developing Locally
To start making changes to the site locally clone the repository via:
git clone https://git.hikuhome.de/SleepyOwls/homepage.git
Then navigate into the repo and run bundle install to install all dependencies declared in the Gemfile.
Finally run bundle exec jekyll serve to start the local development server.
The website is then available at http://localhost:4000/.
Further information can be found in the Jekyll documentation.