Skip to content

Commit

Permalink
Merge pull request #141 from uwhackweek/splashpage_additions
Browse files Browse the repository at this point in the history
Splashpage additions
  • Loading branch information
jomey authored Sep 14, 2023
2 parents 37d63d7 + d7c4513 commit 3b4e082
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qaqc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
check_hidden: true
skip: '*.js,qaqc.yml'
skip: '*.js,qaqc.yml,*.geojson'
ignore_words_file: .codespellignore
only_warn: 1

# borrowed from https://github.com/ProjectPythia/pythia-foundations/blob/main/.github/workflows/link-checker.yaml
- name: Disable Notebook Execution Before Linkcheck
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.repo_directory }}/assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function today(){
const today = new Date();
const weekday = new Intl.DateTimeFormat('en', { weekday: 'long' }).format(today);
const month = new Intl.DateTimeFormat('en', { month: 'long' }).format(today);
const day = new Intl.DateTimeFormat('en', { day: 'numeric' }).format(today);
const day = new Intl.DateTimeFormat('en', { day: '2-digit' }).format(today);

return [weekday, day, month].join(' ')
}
Expand Down

0 comments on commit 3b4e082

Please sign in to comment.