File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -8,21 +8,23 @@ const { title } = Astro.props;
8
8
const links = [
9
9
{
10
10
name: " Home" ,
11
- href: " . " ,
11
+ href: " / " ,
12
12
},
13
13
{
14
14
name: " Usage" ,
15
- href: " usage" ,
15
+ href: " / usage" ,
16
16
},
17
17
{
18
18
name: ' Modular PlusCal' ,
19
- href: ' mpcal' ,
19
+ href: ' / mpcal' ,
20
20
},
21
21
];
22
22
---
23
23
24
24
<header class =" flex flex-row flex-wrap gap-8 rounded-t outline outline-2 outline-offset-8 outline-slate-800 mb-8 items-end" >
25
- <h1 class =" text-4xl" ><a href =" ." >DistCompiler/PGo</a ></h1 >
25
+ <h1 class =" text-4xl" >
26
+ <a href =" /" >DistCompiler/PGo</a >
27
+ </h1 >
26
28
<nav class =" mr-8" >
27
29
<ul class =" flex flex-row gap-4 text-lg font-medium" >
28
30
{
Original file line number Diff line number Diff line change @@ -45,4 +45,4 @@ It supports compilation of all PlusCal control flow constructs.
45
45
PGo also supports a vast majority of the value-level TLA+ supported by TLC.
46
46
See the pull requests and issues for documentation of ongoing work.
47
47
48
- To try PGo out anyway, check out the <a href = " usage" >usage documentation</a > or the current <a href = " mpcal" >description of Modular PlusCal</a >.
48
+ To try PGo out anyway, check out the <a href = " / usage" >usage documentation</a > or the current <a href = " / mpcal" >description of Modular PlusCal</a >.
You can’t perform that action at this time.
0 commit comments