mirror of
https://github.com/freebsd/freebsd-papers
synced 2026-03-24 04:28:41 +00:00
No description
- HTML 90.9%
- CSS 9.1%
|
|
||
|---|---|---|
| archetypes | ||
| content | ||
| layouts | ||
| static/css | ||
| themes | ||
| .cirrus.yml | ||
| .gitignore | ||
| .gitmodules | ||
| config.toml | ||
| README.md | ||
| structure.md | ||
| template.md | ||
freebsd-papers
The base for Papers.FreeBSD.org, a collection of conference talks, papers, slides, and videos from conferences related to FreeBSD
To add a paper or talk:
- Create
lastname-title.md(based ontemplate.md) in the corresponding year directory - If there are many talks from the same conference, create a subdirectory
- create a
lastname-title.files/directory beside the.mdfile to store the attachments
The site is built with Hugo.
To install the requirement for building the site:
# pkg install gohugo
$ git submodule init
$ git submodule update
To build the site locally:
$ hugo
To check it locally:
$ hugo server
To check it locally when hugo server arbitrarily refuses to serve files with
long names:
$ (cd public_html && python -m SimpleHTTPServer)