move about pages under /about

This commit is contained in:
Vincent Breitmoser 2019-04-25 17:52:54 +02:00
parent a1c5b9dc5d
commit 84b69ffad9
No known key found for this signature in database
GPG Key ID: 7BD18320DEADFA11
4 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
{{#> layout }} {{#> layout }}
<div class="spacer"> <div class="spacer">
<center><h2>About | <a href="/privacy">Privacy Policy</a> | <a href="/apidoc">API Docs</a></h2></center> <center><h2>About | <a href="/about/privacy">Privacy Policy</a> | <a href="/about/api">API Docs</a></h2></center>
<p> <p>
The <tt>keys.openpgp.org</tt> website is a public service for the The <tt>keys.openpgp.org</tt> website is a public service for the
@ -80,7 +80,7 @@
privacy in the OpenPGP ecosystem.</li> privacy in the OpenPGP ecosystem.</li>
</ul> </ul>
</p> </p>
<p>See our <a href="/privacy">Privacy Policy</a> for more details on <p>See our <a href="/about/privacy">Privacy Policy</a> for more details on
how we store and distribute data.</p> how we store and distribute data.</p>
</li> </li>
</ul> </ul>

View File

@ -1,6 +1,6 @@
{{#> layout }} {{#> layout }}
<div class="spacer"> <div class="spacer">
<center><h2><a href="/about">About</a> | <a href="/privacy">Privacy Policy</a> | API Docs</h2></center> <center><h2><a href="/about">About</a> | <a href="/about/privacy">Privacy Policy</a> | API Docs</h2></center>
<p> <p>
Hagrid implements both the legacy HKP interface, as well as our Hagrid implements both the legacy HKP interface, as well as our

View File

@ -1,7 +1,7 @@
{{#> layout }} {{#> layout }}
<div class="spacer"> <div class="spacer">
<center><h2><a href="/about">About</a> | Privacy Policy | <a href="/apidoc">API Docs</a></h2></center> <center><h2><a href="/about">About</a> | Privacy Policy | <a href="/about/api">API Docs</a></h2></center>
<p style="text-align: left;"> <p style="text-align: left;">
The public keyserver running on keys.openpgp.org processes, stores and The public keyserver running on keys.openpgp.org processes, stores and
@ -61,8 +61,8 @@
</li> </li>
</ul> </ul>
<p style="text-align: left">Data is never relayed to third parties outside of <p style="text-align: left">Data is never relayed to third parties outside of
what is available from the <a href="/apidoc">public API interfaces</a>, and what is described in what is available from the <a href="/about/api">public API interfaces</a>,
this policy. and what is described in this policy.
</p> </p>
</div> </div>
{{/layout}} {{/layout}}

View File

@ -406,17 +406,17 @@ fn root() -> Template {
#[get("/about")] #[get("/about")]
fn about() -> Template { fn about() -> Template {
Template::render("about", templates::General::default()) Template::render("about/about", templates::General::default())
} }
#[get("/privacy")] #[get("/about/privacy")]
fn privacy() -> Template { fn privacy() -> Template {
Template::render("privacy", templates::General::default()) Template::render("about/privacy", templates::General::default())
} }
#[get("/apidoc")] #[get("/about/api")]
fn apidoc() -> Template { fn apidoc() -> Template {
Template::render("apidoc", templates::General::default()) Template::render("about/api", templates::General::default())
} }
pub fn serve() -> Result<()> { pub fn serve() -> Result<()> {