Skip to content

Commit 34a5ef8

Browse files
add blog
1 parent 8999bfe commit 34a5ef8

3 files changed

Lines changed: 46 additions & 0 deletions

File tree

_data/blogs.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
- title: "Introduction to NeuroAI: Bridging Neuroscience and Artificial Intelligence"
2+
author: "San Zhang"
3+
date: "2025-01-15"
4+
excerpt: "Exploring the fascinating intersection of neuroscience and AI, and how these fields can benefit each other."
5+
link: "https://example.com/blog/intro-neuroai"
6+
7+
- title: "Recent Advances in Spiking Neural Networks"
8+
author: "Si Li"
9+
date: "2025-01-10"
10+
excerpt: "A deep dive into the latest developments in spiking neural networks and their applications."
11+
link: "https://example.com/blog/spiking-nn"
12+
13+
- title: "Brain-Computer Interfaces: Current State and Future Directions"
14+
author: "Wang Wu"
15+
date: "2025-01-05"
16+
excerpt: "An overview of BCI technology, its current applications, and what we can expect in the future."
17+
link: "https://example.com/blog/bci-future"
18+
19+
- title: "Generative Models for Neuroscience Research"
20+
author: "San Zhang"
21+
date: "2024-12-28"
22+
excerpt: "How generative AI models are revolutionizing neuroscience research and data analysis."
23+
link: "https://example.com/blog/generative-neuro"

_layouts/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ <h1 class="site-title"><a href="{{ "/" | relative_url }}">{{ site.title }}</a></
3333
<li><a href="{{ "/people" | relative_url }}">People</a></li>
3434
<li><a href="{{ "/publications" | relative_url }}">Publications</a></li>
3535
<li><a href="{{ "/projects" | relative_url }}">Projects</a></li>
36+
<li><a href="{{ "/blog" | relative_url }}">Blog</a></li>
3637
</ul>
3738
</nav>
3839

blog.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
layout: default
3+
title: Blog
4+
---
5+
6+
# Blog Posts
7+
8+
<div class="blog-container">
9+
{% for blog in site.data.blogs %}
10+
<div class="blog-post">
11+
<h2 class="blog-title">
12+
<a href="{{ blog.link }}" target="_blank" rel="noopener">{{ blog.title }}</a>
13+
</h2>
14+
<div class="blog-meta">
15+
<span class="blog-author">By {{ blog.author }}</span>
16+
<span class="blog-date">{{ blog.date | date: "%B %d, %Y" }}</span>
17+
</div>
18+
<p class="blog-excerpt">{{ blog.excerpt }}</p>
19+
<a href="{{ blog.link }}" class="blog-link" target="_blank" rel="noopener">Read more →</a>
20+
</div>
21+
{% endfor %}
22+
</div>

0 commit comments

Comments
 (0)