Skip to content

Commit c3f3a5c

Browse files
committed
fix inconsistencies
1 parent 9e1dcdf commit c3f3a5c

8 files changed

Lines changed: 107 additions & 47 deletions

File tree

404.html

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1-
<!doctype html><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">
2-
<title>Not Found</title><style>body{font-family:sans-serif;display:grid;place-items:center;height:100vh;margin:0}a{color:#0e5ef0;text-decoration:none}</style>
3-
<h1>404 – Not Found</h1><p><a href="/">Back to home</a></p>
1+
---
2+
layout: default
3+
title: "Page Not Found"
4+
description: "The page you're looking for doesn't exist"
5+
---
6+
7+
<div class="page-header">
8+
<h1>404 – Page Not Found</h1>
9+
<p class="page-subtitle">Sorry, the page you're looking for doesn't exist.</p>
10+
</div>
11+
12+
<div class="error-content">
13+
<div class="error-message">
14+
<p>The page you requested could not be found. It may have been moved, deleted, or the URL might be incorrect.</p>
15+
<div class="error-actions">
16+
<a href="{{ '/' | relative_url }}" class="btn-primary">Go Home</a>
17+
<a href="{{ '/research/' | relative_url }}" class="btn-secondary">View Research</a>
18+
<a href="{{ '/people/' | relative_url }}" class="btn-secondary">Meet the Team</a>
19+
</div>
20+
</div>
21+
</div>

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ This website is built using [Jekyll](https://jekyllrb.com/), a static site gener
2424
├── _data/
2525
│ ├── people.yml # Lab members data
2626
│ └── publications.yml # Publications data
27-
├── _people/ # Empty collection directory
28-
├── _publications/ # Empty collection directory
2927
├── Gemfile # Ruby dependencies
3028
├── Gemfile.lock # Locked dependency versions
3129
├── .gitignore # Git ignore rules

_config.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,13 @@ markdown: kramdown
99
highlighter: rouge
1010
permalink: pretty
1111

12-
# Collections
13-
collections:
14-
people:
15-
output: true
16-
permalink: /:name/
17-
publications:
18-
output: true
19-
permalink: /:name/
20-
2112
# Defaults
2213
defaults:
2314
- scope:
2415
path: ""
2516
type: "pages"
2617
values:
2718
layout: "default"
28-
- scope:
29-
path: ""
30-
type: "people"
31-
values:
32-
layout: "person"
33-
- scope:
34-
path: ""
35-
type: "publications"
36-
values:
37-
layout: "publication"
3819

3920
# Plugins
4021
plugins:
@@ -44,8 +25,6 @@ plugins:
4425
# Exclude from processing
4526
exclude:
4627
- README.md
47-
- TEMPLATE_README.md
48-
- update_template.py
4928
- Gemfile
5029
- Gemfile.lock
5130
- node_modules

_data/people.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ research_fellows:
4040

4141
- name: "Peter Vincent"
4242
title: "Research Fellow"
43-
photo: "Peter Vincent.jpg"
43+
photo: "peter_vincent.jpg"
4444
description: "Peter works on developing novel experimental tools and techniques for neuroscience research. He contributes to projects like Zapit, an open-source photostimulation system for neural circuit manipulation."
4545

4646
phd_students:

assets/css/style.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,88 @@ body {
209209
object-fit: cover;
210210
}
211211

212+
/* Research area tags */
213+
.research-areas {
214+
display: flex;
215+
flex-wrap: wrap;
216+
gap: 10px;
217+
margin-top: 20px;
218+
}
219+
220+
.research-area-tag {
221+
background: var(--primary-color);
222+
color: white;
223+
padding: 8px 16px;
224+
border-radius: 20px;
225+
font-size: 14px;
226+
font-weight: 500;
227+
text-decoration: none;
228+
transition: background-color 0.2s;
229+
}
230+
231+
.research-area-tag:hover {
232+
background: #0056b3;
233+
}
234+
235+
/* Error page styles */
236+
.error-content {
237+
text-align: center;
238+
max-width: 600px;
239+
margin: 0 auto;
240+
padding: 40px 20px;
241+
}
242+
243+
.error-message {
244+
margin-bottom: 40px;
245+
}
246+
247+
.error-actions {
248+
display: flex;
249+
gap: 15px;
250+
justify-content: center;
251+
flex-wrap: wrap;
252+
}
253+
254+
.btn-primary, .btn-secondary {
255+
display: inline-block;
256+
padding: 12px 24px;
257+
border-radius: var(--border-radius);
258+
text-decoration: none;
259+
font-weight: 500;
260+
transition: all 0.2s;
261+
}
262+
263+
.btn-primary {
264+
background: var(--primary-color);
265+
color: white;
266+
}
267+
268+
.btn-primary:hover {
269+
background: #0056b3;
270+
color: white;
271+
}
272+
273+
.btn-secondary {
274+
background: #f8f9fa;
275+
color: var(--primary-color);
276+
border: 2px solid var(--primary-color);
277+
}
278+
279+
.btn-secondary:hover {
280+
background: var(--primary-color);
281+
color: white;
282+
}
283+
284+
/* Photo placeholder */
285+
.photo-placeholder {
286+
text-align: center;
287+
color: #666;
288+
font-style: italic;
289+
padding: 40px 20px;
290+
background: #f8f9fa;
291+
border-radius: var(--border-radius);
292+
}
293+
212294
.left-links {
213295
display: flex;
214296
flex-direction: column;

index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: "LIM Lab (Learning, Inference & Memory), Athena Akrami's group at S
55
---
66

77
<section class="hero">
8-
<img src="{{ '/assets/img/header_london.png' | relative_url }}" alt="Hero image">
8+
<img src="{{ '/assets/img/header_london.png' | relative_url }}" alt="London skyline - Sainsbury Wellcome Centre location">
99
<div class="hero-content">
1010
<h1>Learning, Inference &amp; Memory</h1>
1111
<p class="hero-subtitle">Athena Akrami's lab at Sainsbury Wellcome Centre, UCL, London</p>
@@ -15,7 +15,7 @@ description: "LIM Lab (Learning, Inference & Memory), Athena Akrami's group at S
1515
<div class="main-content">
1616
<div class="content-left">
1717
<div class="approach-image">
18-
<img src="{{ '/assets/img/approach.webp' | relative_url }}" alt="Our approach to research">
18+
<img src="{{ '/assets/img/approach.webp' | relative_url }}" alt="LIM Lab research approach: theory, experiment, high-throughput training, and neural monitoring">
1919
</div>
2020
<div class="left-links">
2121
<a href="{{ '/research/' | relative_url }}">Research</a>

research/index.md

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -86,24 +86,7 @@ description: "Research at LIM Lab (Learning, Inference & Memory), Athena Akrami'
8686
<section class="research-section">
8787
<h2>Research Photos</h2>
8888
<div class="research-photos">
89-
<div class="photo-grid">
90-
<div class="photo-item">
91-
<img src="{{ '/assets/img/research-setup-1.jpg' | relative_url }}" alt="Research setup" class="research-image">
92-
<p class="photo-caption">Experimental setup for behavioral studies</p>
93-
</div>
94-
<div class="photo-item">
95-
<img src="{{ '/assets/img/research-setup-2.jpg' | relative_url }}" alt="Neural recording setup" class="research-image">
96-
<p class="photo-caption">Neural recording equipment</p>
97-
</div>
98-
<div class="photo-item">
99-
<img src="{{ '/assets/img/lab-environment.jpg' | relative_url }}" alt="Lab environment" class="research-image">
100-
<p class="photo-caption">Lab environment and workspace</p>
101-
</div>
102-
<div class="photo-item">
103-
<img src="{{ '/assets/img/data-analysis.jpg' | relative_url }}" alt="Data analysis" class="research-image">
104-
<p class="photo-caption">Data analysis and computational modeling</p>
105-
</div>
106-
</div>
89+
<p class="photo-placeholder">Research photos will be added here as they become available.</p>
10790
</div>
10891
</section>
10992
</div>

0 commit comments

Comments
 (0)