Compare commits
2 commits
b16fbc9d78
...
89da07ad92
Author | SHA1 | Date | |
---|---|---|---|
Emi Simpson | 89da07ad92 | ||
Emi Simpson | 569db808ff |
|
@ -145,7 +145,8 @@ async fn main() -> std::io::Result<()> {
|
|||
let app = App::new()
|
||||
.data(InstanceSettings::default())
|
||||
.wrap(logger)
|
||||
.wrap(middleware::NormalizePath::new(TrailingSlash::Trim));
|
||||
.wrap(middleware::NormalizePath::new(TrailingSlash::Trim))
|
||||
.service(create_link);
|
||||
|
||||
#[cfg(feature = "ogp_images")]
|
||||
let app = app
|
||||
|
@ -157,7 +158,6 @@ async fn main() -> std::io::Result<()> {
|
|||
.service(resource("/") .to(handle_basic_request))
|
||||
.service(resource("/{prefs}") .to(handle_basic_request))
|
||||
.service(resource("/{name}/{prefs}").to(handle_basic_request))
|
||||
.service(create_link)
|
||||
.default_service(web::to(not_found))
|
||||
})
|
||||
.bind("0.0.0.0:8080")?
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
Whoever linked you to this page{% endif %} would like you to try {{ pronoun.render_threeform() }} pronouns for
|
||||
{{ pronoun.object_pronoun }} today.</p>
|
||||
|
||||
<h3>Here are some example sentences using my she/her pronouns:</h3>
|
||||
<h3>Here are some example sentences using my {{pronoun.subject_pronoun}}/{{pronoun.object_pronoun}} pronouns:</h3>
|
||||
|
||||
<p>{{ pronoun.subject_pronoun | capitalize }} walked the dog.</p>
|
||||
|
||||
|
|
Loading…
Reference in a new issue