Repo structure

A brief explanation of the folders and files in the template

Most of this structure is enforced by Jekyll. See this page of the Jekyll documentation more thorough explanation of some of the items here.

Template vs. user content

The most important distinction to make is between template content ("under-the-hood") and user content (for your specific website).

In general, here's how the files and folders in the template fall into these two categories. We've tried to keep these as separated as possible, within the limitations of Jekyll.

User contentTemplate content

Folders

/blog /images /team etc. (starting with letters) /_data

/_members

/_posts (_ exceptions)

.github

.docker

etc. (starting with .)

_cite

_includes

_plugins

etc. (starting with _, except a few 👈)

Files

_config.yaml (top portion of file)

/_styles/-theme.scss 404.md index.md README.md

_config.yaml (bottom portion of file) .gitignore CITATION.cff

Gemfile

Gemfile.lock LICENSE.md

Template repo only content

There are a few files and folders that are needed for the lab-website-template repo itself, but don't belong in your generated/forked repo at all:

  • CHANGELOG.md

  • testbed.md

  • .github/ISSUE_TEMPLATE

  • .github/workflows/versioning.yaml

  • .github/pull_request_template.md (rename user_pull_request_template.md in its place)

Keeping these files in your repo wont break anything per se, but they do increase clutter and confusion. The first time setup process automatically removes and renames these for you, but when updating your template version be sure not to accidentally re-add them to your repo.

Images and other assets

The template comes with a default /images folder to hold all your site's images, but you can organize your images however you'd like. For example, you could put photos of your team in /team/photos/ and just refer to them like team/photos/anna-sun.jpg.

You could also create /videos or any other folders you need for static assets and refer to them in the same way.

The only exception to this is your logo files and fallback image, which the template expects to be in /images.

Data and components

The template comes with a few placeholder data lists and matching components for common needs:

Data/collectionMatching component

Citations (/_data/citations.yaml)

citation

Projects (/_data/projects.yaml)

card

Team members (/_members)

portrait

Blog posts (/_posts)

post-excerpt

Full accounting

A piece-by-piece breakdown of the folders and files in the template. You don't have to understand the inner workings of all of this, but it helps to know generally what each piece is for.

Folder or fileDescription

/_cite

Python code, plugins, and cache that perform the cite process.

/_data /_members /_posts

Data and collections for large lists of items on your site for things like your team and blog.

/_includes

Reusable, small snippets of code that can take parameters. This is where the code for components are, if you need to modify them.

/_layouts

The HTML templates that all pages are built upon. default.html is the default layout for all pages, and should never really be edited. Team member pages and blog post pages have their own layouts in member.html and post.html, which inherit from default.html, and can be edited to add/remove/rearrange sections.

/_plugins

Special Ruby files that extend the functionality of Jekyll and Liquid. These are essentially custom Jekyll plugins, where no existing plugins could be found.

/_scripts

Script files that add interactive features to the website like search, GitHub tag import, tooltips, etc. These scripts have some configuration options, but edit with care. Any JavaScript file you add here will automatically be included in your site.

/_site

The "compiled" output from Jekyll, i.e. the actual content that gets published as your live site. You'll only see this if you've built/previewed your site locally. Changes to it will get overwritten every time the site is rebuilt, so don't edit it directly.

/_styles

Style files that determine how the site and components look. Any Sass or CSS files you add here will automatically be included in your site. Sass files must contain a front matter to be processed by Jekyll.

/.docker

/.github

Files related to GitHub, mostly Actions workflows that perform automated tasks when you make changes to your repo.

/blog /contact /research etc.

The pages of your site.

/images

The default folder for your site's images.

_config.yaml

Basic settings and configuration for your site, along with some advanced Jekyll settings.

.gitignore

Files to not be tracked/included in your site's repo.

404.md

When a visitor goes to a page on your site that doesn't exist, this page gets loaded instead.

citation.cff LICENSE.md

Metadata about the template itself.

Gemfile Gemfile.lock

Files that specify Ruby package dependencies for Jekyll and its plugins.

index.md

The homepage of your site!

README.md

What people see when they go to your repo on GitHub.

Last updated