Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ Go to the URL for the webserver (likely `localhost:1111`) to explore the site.

### Adding to the site

Please create a new branch for your changes and open a PR. Reviews are mandatory. Builds are
Please create a new branch for your changes and open a PR. Reviews are mandatory. Builds are automated via CI.

## Built with

This project is build and run using [Zola](https://www.getzola.org/), a Rust-based static site generator.
This project is built and run using [Zola](https://www.getzola.org/), a Rust-based static site generator.

Under the hood, Zola uses [Tera](https://keats.github.io/tera/) for templating.

Expand Down
2 changes: 1 addition & 1 deletion content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Community Central
---

## Open Source and AI Program Office (OSAIPO)</h2>
## Open Source and AI Program Office (OSAIPO)
<div class="grid sm-two-columns md-two-columns top-cards">
<div>
<a href="https://www.redhat.com/en/about/our-community-contributions" class="button-link primary">Learn more about the Red Hat Open Source and AI Program Office</a>
Expand Down
2 changes: 1 addition & 1 deletion data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"description": "A community-driven Linux distribution sponsored by Red Hat, serving as the upstream for RHEL.",
"children": [
{
"label": "Download Fedora Linux 44! (after April 28th)",
"label": "Download Fedora Linux 44",
"url": "https://fedoraproject.org/"
},
{
Expand Down
4 changes: 2 additions & 2 deletions static/js/table-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function searchTable() {

clearInput.addEventListener('click', inputClear);

filter = input.value.toLowerCase();
const filter = input.value.toLowerCase();

if (input.value !== '') {
clearInput.removeAttribute('hidden');
Expand Down Expand Up @@ -45,7 +45,7 @@ function filterTable() {
const table = document.querySelector('#project-table');
const trs = table.querySelectorAll('tr');

filter = input.value.toLowerCase();
const filter = input.value.toLowerCase();

trs.forEach((tr) => {
let tds = tr.querySelectorAll('td');
Expand Down