Skip to content

Commit 9f6207c

Browse files
authored
Merge pull request #38 from opensolvers/site/nav-title-home
Nav: title links home; split Home/Videos/YouTube row
2 parents dedf2fd + 8d92e4c commit 9f6207c

3 files changed

Lines changed: 18 additions & 1 deletion

File tree

_includes/header.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<header class="page-header" role="banner">
2-
<h1 class="project-name">{{ site.title | default: "OpenSolvers" }}</h1>
2+
<h1 class="project-name">
3+
<a href="{{ '/' | relative_url }}" class="project-name-link">{{ site.title | default: "OpenSolvers" }}</a>
4+
</h1>
35
<h2 class="project-tagline">{{ site.description | default: "RISC-V learnings and fun" }}</h2>
46

57
<nav class="site-nav" aria-label="Main navigation">
@@ -18,6 +20,9 @@ <h2 class="project-tagline">{{ site.description | default: "RISC-V learnings and
1820
</li>
1921
{% endfor %}
2022
</ul>
23+
</div>
24+
25+
<div class="site-nav-row">
2126
<span class="site-nav-label">Apps</span>
2227
<ul class="site-nav-list">
2328
{% for item in site.navigation_apps %}

assets/css/style.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33

44
@import "{{ site.theme }}";
55

6+
.project-name-link {
7+
color: inherit;
8+
text-decoration: none;
9+
}
10+
11+
.project-name-link:hover,
12+
.project-name-link:focus {
13+
color: #fff;
14+
text-decoration: underline;
15+
}
16+
617
.site-nav {
718
margin-top: 1.25rem;
819
}

website.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Catalog: `_data/videos.yml` (newest first). Rendered by `_includes/video-grid.ht
6060

6161
| Date | Decision |
6262
|------|----------|
63+
| 2026-07-19 | Nav: OpenSolvers title links home; Home/Videos/YouTube on separate row from Apps |
6364
| 2026-07-19 | Sync benchmarks PR #18: merge OpenBLAS verification into BLAS page; remove `dgemm.html`; fix GitHub links |
6465
| 2026-07-18 | Videos page + `_data/videos.yml`; U74 YouTube link; SEO (`url`, JSON-LD, robots.txt, page descriptions) |
6566
| 2026-07-18 | Per-board compute-backend SVGs; fix invalid UTF-8 in VisionFive 2 / K1 diagrams |

0 commit comments

Comments
 (0)