You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,7 @@ This website is built using [Jekyll](https://jekyllrb.com/) with the `github-pag
27
27
│ ├── people.yml # Lab members data
28
28
│ ├── publications.yml # Publications data
29
29
│ └── news.yml # Lab news entries
30
+
├── CNAME # Custom domain (lim.bio)
30
31
├── Gemfile # Ruby dependencies
31
32
├── Gemfile.lock # Locked dependency versions
32
33
├── .gitignore # Git ignore rules
@@ -125,7 +126,7 @@ Add new items at the top of the list so the latest news appears first.
125
126
The lab news page has an **Upcoming Events** section. Edit `_data/news.yml`:
126
127
127
128
- **Placeholder message** (when there are no events): change `events_placeholder`.
128
-
- **Add events**: replace `upcoming_events: []` with a list of items, each with `date`, `title`, and optional `description` (markdown):
129
+
- **Add events**: set `upcoming_events` to a list of items (or `[]` when none), each with `date`, `title`, and optional `description` (markdown):
129
130
130
131
```yaml
131
132
upcoming_events:
@@ -144,7 +145,7 @@ upcoming_events:
144
145
145
146
### Page-Specific Changes
146
147
147
-
- **Content**: Edit the respective `.md` file in each directory
148
+
- **Content**: Edit the respective `.md` file in each directory (People, Publications, and Lab News content live in `_data/people.yml`, `_data/publications.yml`, and `_data/news.yml`)
148
149
- **Page Title/Description**: Edit the front matter at the top of each `.md` file
149
150
150
151
## 🌐 Custom Domain Configuration
@@ -213,6 +214,7 @@ We welcome contributions to improve the website! Here's how you can help:
213
214
- Edit `_data/news.yml` and add a new entry under `recent_news`
214
215
- Use `date`, `title`, and `paragraphs` (list of strings; markdown supported)
215
216
- Add new items at the top so the latest news appears first
217
+
- To add or edit **Upcoming Events**, edit `upcoming_events` in `_data/news.yml`
0 commit comments