website: Remove absolute links.
Without that fix, clicking to Download will go to https://gnu.org/download.html. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
This commit is contained in:
parent
36214d6fa1
commit
a705ef9e78
|
@ -67,7 +67,7 @@ $endif$
|
||||||
$for(header-includes)$
|
$for(header-includes)$
|
||||||
$header-includes$
|
$header-includes$
|
||||||
$endfor$
|
$endfor$
|
||||||
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="/feed.xml"/>
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="feed.xml"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
|
@ -89,16 +89,16 @@ $if(date)$
|
||||||
<p class="date">$date$</p>
|
<p class="date">$date$</p>
|
||||||
$endif$
|
$endif$
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="index.html">Home</a></li>
|
||||||
<li><a href="/faq.html">FAQ</a></li>
|
<li><a href="faq.html">FAQ</a></li>
|
||||||
<li><a href="/download.html">Download</a></li>
|
<li><a href="download.html">Download</a></li>
|
||||||
<li><a href="/docs/install/">Install</a></li>
|
<li><a href="docs/install/">Install</a></li>
|
||||||
<li><a href="/docs/">Docs</a></li>
|
<li><a href="docs/">Docs</a></li>
|
||||||
<li><a href="/news/">News</a></li>
|
<li><a href="news/">News</a></li>
|
||||||
<li><a href="https://todo.sr.ht/~libreboot/Libreboot">Bugs</a></li>
|
<li><a href="https://todo.sr.ht/~libreboot/Libreboot">Bugs</a></li>
|
||||||
<li><a href="/tasks/">TODO</a></li>
|
<li><a href="tasks/">TODO</a></li>
|
||||||
<li><a href="/git.html">Send patch</a></li>
|
<li><a href="git.html">Send patch</a></li>
|
||||||
<li><a href="/contact.html">Contact</a></li>
|
<li><a href="contact.html">Contact</a></li>
|
||||||
<li><strong><a href="https://ryf.fsf.org/categories/laptops">Buy preinstalled</a></strong></li>
|
<li><strong><a href="https://ryf.fsf.org/categories/laptops">Buy preinstalled</a></strong></li>
|
||||||
</ul>
|
</ul>
|
||||||
<hr/>
|
<hr/>
|
||||||
|
|
Loading…
Reference in New Issue