No description
  • HTML 90.9%
  • CSS 9.1%
Find a file
Philip Paeps 5e46950186 2025/EuroBSDCon: remove venue: from certner's talk
This might fix the broken link to the presentation (#154).
2025-12-11 11:34:32 +01:00
archetypes Import Hugo, the static site engine 2018-02-23 19:40:05 -05:00
content 2025/EuroBSDCon: remove venue: from certner's talk 2025-12-11 11:34:32 +01:00
layouts change chase from hugo.IsMultiLingual to hugo.IsMutlilingual 2025-03-05 22:23:20 -08:00
static/css Fix responsive menu, so the site works on a phone 2020-02-04 03:56:40 +00:00
themes Update the version of the theme 2020-02-04 03:41:57 +00:00
.cirrus.yml Cirrus CI: Switch to on-premises worker 2024-05-04 10:50:34 +08:00
.gitignore Create .gitignore 2020-01-20 23:57:06 +08:00
.gitmodules Sort the theme out as a submodule 2018-02-24 12:12:52 -05:00
config.toml Add link to github repository 2020-01-20 23:57:51 +08:00
README.md Add some formatting to README.md 2021-03-09 09:09:37 +08:00
structure.md Added paper for TLEM, corrected structure to match asiabsdcon 2016 examle 2018-02-25 10:15:11 +01:00
template.md Add a new metadata tag for talk venues. 2019-09-22 09:56:13 +02:00

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 on template.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 .md file 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)