-
Notifications
You must be signed in to change notification settings - Fork 4
Layout updates #86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
flicksolutions
wants to merge
11
commits into
main
Choose a base branch
from
layout-updates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Layout updates #86
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
7604cd6
edit navbars
flicksolutions 1e24482
add copilot instructions for AI Agents
flicksolutions eab3123
fix: wrong date format
flicksolutions 43e686c
add split of current and past events
flicksolutions fa80ed2
add daily build to keep the list correct
flicksolutions 6e92468
add missing metadata
flicksolutions a55bdfd
Update scripts/split-events.py
flicksolutions 0991b54
Update scripts/split-events.py
flicksolutions 503617f
Update scripts/split-events.py
flicksolutions e0575ff
Update scripts/split-events.py
flicksolutions b8a972c
lint
flicksolutions File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,121 @@ | ||
| # Project Guidelines — dhbern.github.io | ||
|
|
||
| Academic website for the Digital Humanities department at the University of Bern. Built with **Quarto** and hosted on **GitHub Pages**. | ||
|
|
||
| ## Architecture | ||
|
|
||
| - **Quarto website** (`_quarto.yml`) with listings-driven homepage | ||
| - Content lives in `content/` with four main types: `posts/`, `events/`, `projects/`, `services/` | ||
| - `content/intro-lecture/` is a special synced section (from external repo via GitHub Actions) — do not edit directly | ||
| - Styling: `_brand.yml` → `custom.scss` → `styles.css` (Bootstrap + brand tokens + custom SCSS) | ||
| - Static assets (fonts) in `assets/fonts/` | ||
|
|
||
| ## Build & Dev | ||
|
|
||
| ```bash | ||
| npm install # Node deps (Prettier, git-cliff) | ||
| uv sync # Python environment | ||
| npm run check # Lint with Prettier | ||
| npm run format # Auto-format with Prettier | ||
| uv run quarto preview # Local dev server | ||
| uv run quarto render # Full build → _site/ | ||
| ``` | ||
|
|
||
| CI runs `npm run check` (lint) then Quarto render on every push to `main`. | ||
|
|
||
| ## Content Conventions | ||
|
|
||
| ### Folder naming | ||
|
|
||
| - Posts: `content/posts/YYYYMMDD-short-slug/index.qmd` | ||
| - Events: `content/events/YYYYMMDD-short-slug/index.qmd` | ||
| - Projects: `content/projects/short-slug/index.qmd` | ||
| - Services: `content/services/short-slug/index.qmd` | ||
|
|
||
| ### Frontmatter patterns | ||
|
|
||
| Every content page needs `title` and `categories` for listings to work. | ||
|
|
||
| **Post:** | ||
|
|
||
| ```yaml | ||
| title: 'Post Title' | ||
| author: 'Author Name' | ||
| date: '2025.04.02' | ||
| categories: [Post] | ||
| ``` | ||
|
|
||
| **Event:** | ||
|
|
||
| ```yaml | ||
| title: 'Event Title' | ||
| subtitle: 'Optional subtitle' | ||
| event-date: '2025-04-30' | ||
| date: '2025-04-25' | ||
| categories: [Event] | ||
| location: 'Room, Building, City' | ||
| author: 'Organizer' | ||
| ``` | ||
|
|
||
| **Project:** | ||
|
|
||
| ```yaml | ||
| title: 'Project Name' | ||
| subtitle: 'Short description' | ||
| image: image.png | ||
| author: | ||
| - name: 'Researcher' | ||
| orcid: '0000-0000-0000-0000' | ||
| categories: [Project] | ||
| ``` | ||
|
|
||
| **Service:** | ||
|
|
||
| ```yaml | ||
| title: 'Service Name' | ||
| author: 'Team' | ||
| categories: [Services] | ||
| ``` | ||
|
|
||
| Note: Services category is `Services` (plural), while others are singular (`Post`, `Event`, `Project`). | ||
|
|
||
| ### Author field | ||
|
|
||
| Can be a plain string or a structured object with `name`, `orcid`, `email`, `affiliations`, `role`. | ||
|
|
||
| ### Links | ||
|
|
||
| Use `other-links` list for external resources: | ||
|
|
||
| ```yaml | ||
| other-links: | ||
| - text: 'GitHub Repository' | ||
| icon: github | ||
| href: https://github.com/example/repo | ||
| ``` | ||
|
|
||
| ## Git Conventions | ||
|
|
||
| - **Commit messages**: Conventional Commits — `feat:`, `fix:`, `doc:`, `refactor:`, `style:`, `test:`, `chore:`, `perf:` | ||
| - **Versioning**: SemVer. Changelog auto-generated by `git-cliff` | ||
| - **PRs**: Require discussion before opening; need 2 approvals. See [CONTRIBUTING.md](../CONTRIBUTING.md) | ||
|
|
||
| ## Key Files | ||
|
|
||
| | File | Purpose | | ||
| | ---------------------------- | --------------------------------------- | | ||
| | `_quarto.yml` | Site config, navbar, sidebar, listings | | ||
| | `_brand.yml` | Brand colors and typography tokens | | ||
| | `custom.scss` | SCSS overrides (layout, navbar, footer) | | ||
| | `styles.css` | Font-face declarations, utility classes | | ||
| | `index.qmd` | Homepage with three listing sections | | ||
| | `content/projects/index.qmd` | Projects listing page | | ||
| | `content/services/index.qmd` | Services listing page | | ||
|
|
||
| ## Gotchas | ||
|
|
||
| - `content/intro-lecture/` is **synced from an external repo** — edits here will be overwritten | ||
| - Date format varies: posts use `YYYY.MM.DD`, events use ISO `YYYY-MM-DD` for `event-date` | ||
| - The `freeze: auto` setting caches computed outputs — delete `_freeze/` if outputs seem stale | ||
| - Rendered site goes to `_site/` (gitignored) — do not commit build artifacts | ||
| - Primary brand color is `#d6002b` (University of Bern red) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 39 additions & 38 deletions
77
content/events/im_dialog/2023-linked-open-data-in-dialogue/index.qmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,78 +1,79 @@ | ||
| --- | ||
| title: "Linked Open Data in Dialogue (2023)" | ||
| subtitle: "…in Dialogue — Digital Humanities, University of Bern" | ||
| date: 2023-11-15 | ||
| lang: en | ||
| date: "2023-11-15" | ||
| event-date: "2023-11-15" | ||
| categories: [Event] | ||
| lang: "en" | ||
| --- | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| # Linked Open Data in Dialogue (2023) | ||
|
|
||
| The event **Linked Open Data in Dialogue** took place on **15 November 2023** at the University of Bern. It was part of the *…in Dialogue* series and focused on the use, publication, and sustainability of Linked Open Data (LOD) in the Humanities and Social Sciences. | ||
|
|
||
| **Location:** Room 501 (Kuppelraum), Hochschulstrasse 4, 3012 Bern | ||
| **Format:** On‑site and online (Zoom) | ||
| **Location:** Room 501 (Kuppelraum), Hochschulstrasse 4, 3012 Bern\ | ||
| **Format:** On‑site and online (Zoom)\ | ||
| **Language:** English | ||
|
|
||
| --- | ||
| ------------------------------------------------------------------------ | ||
|
|
||
| ## About the Event | ||
|
|
||
| The event was jointly organized by the **Digital Humanities Unit** and the **University Library of Bern** within the framework of the **LOD4HSS** project. It aimed to foster exchange between researchers, librarians, and developers working with Linked Open Data and semantic technologies. | ||
|
|
||
| Special emphasis was placed on practical applications, interoperability, and the integration of research data into sustainable infrastructures such as **Geovistory** and **OntoME**. | ||
|
|
||
| --- | ||
| ------------------------------------------------------------------------ | ||
|
|
||
| ## Program | ||
|
|
||
| ### Morning Session | ||
|
|
||
| **09:00 – Welcome** | ||
| Ursula Loosli, Stephen Hart, Tobias Hodel | ||
| **09:00 – Welcome**\ | ||
| Ursula Loosli, Stephen Hart, Tobias Hodel | ||
|
|
||
| **09:15 – 10:00** | ||
| *Linked Open Data for Research: Towards a Paradigm Shift in the Humanities and Social Sciences* | ||
| Francesco Beretta | ||
| **09:15 – 10:00**\ | ||
| *Linked Open Data for Research: Towards a Paradigm Shift in the Humanities and Social Sciences*\ | ||
| Francesco Beretta | ||
|
|
||
| **10:15 – 11:25 – Geovistory Workshops** | ||
| Parallel sessions for beginners and advanced users | ||
| **10:15 – 11:25 – Geovistory Workshops**\ | ||
| Parallel sessions for beginners and advanced users | ||
|
|
||
| **11:30 – 12:30 – Project Presentations** | ||
| - *The MURELCO Seminar – A Teaching Tool* — Matthieu Gillabert & Stephen Hart | ||
| - *The Processetti Inquiries (16th–17th c.)* — David Knecht | ||
| - *Switzerland and Beyond* — Tobias Hodel | ||
| - *Diaries of Anna Maria Preiswerk-Iselin* — Morgane Pica | ||
| - *OntoME – Ontology Management Environment* — Vincent Alamercery | ||
| **11:30 – 12:30 – Project Presentations** - *The MURELCO Seminar – A Teaching Tool* — Matthieu Gillabert & Stephen Hart\ | ||
| - *The Processetti Inquiries (16th–17th c.)* — David Knecht\ | ||
| - *Switzerland and Beyond* — Tobias Hodel\ | ||
| - *Diaries of Anna Maria Preiswerk-Iselin* — Morgane Pica\ | ||
| - *OntoME – Ontology Management Environment* — Vincent Alamercery | ||
|
flicksolutions marked this conversation as resolved.
|
||
|
|
||
| --- | ||
| ------------------------------------------------------------------------ | ||
|
|
||
| ### Afternoon Session | ||
|
|
||
| **14:00 – 15:15** | ||
| *Archival Descriptions as Linked Open Data: Why, How, and Where To* | ||
| Oliver Schihin | ||
| **14:00 – 15:15**\ | ||
| *Archival Descriptions as Linked Open Data: Why, How, and Where To*\ | ||
| Oliver Schihin | ||
|
|
||
| *Linked Open Data in Numismatics – nomisma.org and beyond* | ||
| Rahel C. Ackermann | ||
| *Linked Open Data in Numismatics – nomisma.org and beyond*\ | ||
| Rahel C. Ackermann | ||
|
|
||
| *LOD Pilot Project “Berner Ortsgeschichten”* | ||
| René Frei & Thomas Hayoz | ||
| *LOD Pilot Project “Berner Ortsgeschichten”*\ | ||
| René Frei & Thomas Hayoz | ||
|
|
||
| **15:45 – 17:00** | ||
| *Wikidata Hands-on: Introduction, Analysis and Visualization* | ||
| Benedikt Hitz-Gamper | ||
| **15:45 – 17:00**\ | ||
| *Wikidata Hands-on: Introduction, Analysis and Visualization*\ | ||
| Benedikt Hitz-Gamper | ||
|
|
||
| **17:00 – 17:15** | ||
| Closing remarks & Apéro | ||
| Tobias Hodel & Gero Schreier | ||
| **17:00 – 17:15**\ | ||
| Closing remarks & Apéro\ | ||
| Tobias Hodel & Gero Schreier | ||
|
|
||
| --- | ||
| ------------------------------------------------------------------------ | ||
|
|
||
| ## Contact | ||
|
|
||
| For further information, please contact: | ||
| **imdialog@ub.unibe.ch** | ||
| For further information, please contact:\ | ||
| **imdialog\@ub.unibe.ch** | ||
|
|
||
| --- | ||
| ------------------------------------------------------------------------ | ||
|
|
||
| *This event was part of the “im Dialog” series by the Digital Humanities initiative at the University of Bern.* | ||
| *This event was part of the “im Dialog” series by the Digital Humanities initiative at the University of Bern.* | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.