File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
- title : Rust Blog
1
+ title : Rust blog
2
2
index-title : The Rust Programming Language Blog
3
3
description : Empowering everyone to build reliable and efficient software.
4
4
index-html : This is the <b>main Rust blog</b>. We use this blog to
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ impl Generator {
133
133
fn render_index ( & self , blog : & Blog ) -> Result < ( ) , Box < dyn Error > > {
134
134
let other_blogs: Vec < _ > = self . blogs . iter ( ) . filter ( |b| b. index_title ( ) != blog. index_title ( ) )
135
135
. map ( |other_blog| json ! ( {
136
- "name" : other_blog. index_title ( ) ,
136
+ "name" : other_blog. title ( ) ,
137
137
"url" : PathBuf :: from( "/" ) . join( other_blog. prefix( ) ) . join( "index.html" ) ,
138
138
} ) )
139
139
. collect ( ) ;
Original file line number Diff line number Diff line change 10
10
<p >
11
11
<b >See also:</b >
12
12
{{ #each other_blogs }}
13
- <a href =" {{ url }} " >{{ name }} </a >
13
+ <a href =" {{ url }} " >the {{ name }} </a >
14
14
{{ /each }}
15
15
</p >
16
16
</div >
You can’t perform that action at this time.
0 commit comments