abount, security and donation links
This commit is contained in:
parent
fcdbe66b26
commit
5963df19f2
2 changed files with 14 additions and 4 deletions
|
@ -28,6 +28,7 @@ pub struct Routes {
|
|||
pub about: &'static str,
|
||||
pub thanks: &'static str,
|
||||
pub donate: &'static str,
|
||||
pub security: &'static str,
|
||||
}
|
||||
|
||||
impl Routes {
|
||||
|
@ -42,6 +43,7 @@ impl Routes {
|
|||
about: "/about",
|
||||
thanks: "/thanks",
|
||||
donate: "/donate",
|
||||
security: "/security",
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,16 +2,24 @@
|
|||
<p class="details__copyright"> © mCaptcha developers </p>
|
||||
<ul class="details">
|
||||
<li class="details__item">
|
||||
<a class="details__link" href="<.= crate::PKG_HOMEPAGE .>">Homepage</a>
|
||||
<a class="details__link"
|
||||
href="<.= crate::PKG_HOMEPAGE .>">Homepage</a>
|
||||
</li>
|
||||
<li class="details__item">
|
||||
<a class="details__link" href="<.= crate::PAGES.about .>">About</a>
|
||||
<a class="details__link"
|
||||
href="<.= crate::PKG_HOMEPAGE .><.= crate::PAGES.about .>">About</a>
|
||||
</li>
|
||||
<li class="details__item">
|
||||
<a class="details__link" href="<.= crate::PAGES.thanks .>">Thanks</a>
|
||||
<a class="details__link"
|
||||
href="<.= crate::PKG_HOMEPAGE .><.= crate::PAGES.donate .>">Donate</a>
|
||||
</li>
|
||||
<li class="details__item">
|
||||
<a class="details__link"
|
||||
href="<.= crate::PKG_HOMEPAGE .><.= crate::PAGES.security .>">Security</a>
|
||||
</li>
|
||||
<li class="details__item">
|
||||
<a class="details__link" href="<.= crate::PAGES.donate .>">Donate</a>
|
||||
<a class="details__link"
|
||||
href="<.= crate::PKG_HOMEPAGE .><.= crate::PAGES.thanks .>">Thanks</a>
|
||||
</li>
|
||||
<li class="details__item">
|
||||
v<.= crate::VERSION .>-<.= crate::GIT_COMMIT_HASH[0..8] .>
|
||||
|
|
Loading…
Reference in a new issue