wepwebkit.org is a statically generated site for WPE. The website aims to be simple to maintain and with little complexity and dependencies. It is built with 11ty and Liquid templates - and that's pretty much it.
The actual site is hosted by Igalia who are the primary maintainers of the project.
In order to setup, you just just have to check it out, switch to the checked out directory and then npm install.
In order to test it all you need to do is
npm install && npm run serveThis will build the project, start a server, and your terminal will provide you useful links to actually get to it.
-
_siteis the output folder, where the generated and served content lives. It is committed and github pages used to provide a sharable dev URL in case you want to discuss proposed changes easily or test for something without exposing things behind your own firewall. -
_includescontains templates and partials. Currently our templates are based on a variant of Stylish Portfolio simply because that is what we had to start with. -
_postscontains much of the actual content: release notes, security advisories, posts, etc as.mdfiles with front matter. These generate individual .html files in_site. -
assetscontain images and things, they are copied directly into their relevant directory in_site. -
cssThis is where our CSS goes. Currently, our CSS is overrides and customizations for the Stylish Portfolio CSS. There is no preprocessing at the moment. -
releasecontains the markdown and directory structure for the release schedule page. -
vendorthis contains thirdparty stuff that we will use directly in the site - it is copied wholesale into its relevant spot in the output directory (_site). There is currently too much in there - our page uses stylish portfolio, which uses bootstrap, which uses jQuery and font-awesome and simple-line-icons. These in turn contain things for bundling, pre-processing with several different preprocessors, etc. We will probably simplify this further, that's a lot of downloads, code and round-trips for such a simple site. -
aboutcontains page posts that are about various aspects of wpe
In the root directory you will also find some top level files - index.htmlwhich is the template for the main page, release.md which is the template for creating the release pages, a package.json which is, well, what you'd expect and .eleventy.js which does some very understandable work in creating a date filter for outputting dates (because of how some of the old content exists), and creates some 'recent' collections for simple templating of things like release notes and security advisories.
- The website is automatically updated from this repository. So simply commit to master or send a pull-request.
In order to write a new release or security advisory piece in the website
you just have to create a new file inside _posts folder using
Markdown syntax.
Should you need anything else, you will find 11ty's documentation pretty helpful.