Mirror of Apache Wicket Web Site

Clone this repo:
  1. 0d785c4 removed Twitter account link from community page and added a link to 'Modern Web development with Apache Wicket' repo by Andrea Del Bene · 7 days ago asf-site
  2. db28b64 Fix: all deprecation warnings from sass by Martijn Dashorst · 12 days ago
  3. 4217883 Replace http: with https: in urls in doap.rdf, Fix link to license by Martijn Dashorst · 12 days ago
  4. 1ed2e1b Fix: template errors in plugin by Martijn Dashorst · 6 weeks ago
  5. e52ab5e Added announces for 9.21.0 and 10.5.0 by Andrea Del Bene · 3 weeks ago

Wicket new site

This repository contains the site of Apache Wicket framework.

Project info

The site is based on Jekyll. So you have to be familiar with Markdown template language and have Jekyll (ver. 3+) installed to contribute to the project.

Run the project

Just go on project root folder and execute jekyll serve -w to generate the static HTML and start the local server. The project comes with all the dependencies you need (css, js, pictures, etc.) so you don't need any preliminary operation before running Jekyll.

If Jekyll is missing any dependency then run bundle install.

Using Docker (thanks Apache Arrow!)

If you don't wish to change or install ruby and nodejs locally, you can use docker to build and preview the site with a command like:

cd path/to/wicket-site
docker run -v $PWD:/wicket-site -p 4000:4000 -it ruby bash
cd /wicket-site
apt-get update
apt-get install -y npm
gem install bundler
bundle install
# Serve using local container address
jekyll serve -H 0.0.0.0

Then open http://localhost:4000 locally