Reorganize
This commit is contained in:
39
crates/service/service-webpage/src/components/mangle.rs
Normal file
39
crates/service/service-webpage/src/components/mangle.rs
Normal file
@@ -0,0 +1,39 @@
|
||||
use maud::{Markup, Render, html};
|
||||
|
||||
pub struct MangledBetaEmail {}
|
||||
|
||||
impl Render for MangledBetaEmail {
|
||||
fn render(&self) -> Markup {
|
||||
html!(
|
||||
span class="eobf eobf-beta" {
|
||||
i id="eobf-en" class="fas fa-envelope" style="margin-right: 5pt" {}
|
||||
i id="eobf-kb" class="fas fa-keyboard" style="margin-right: 5pt" {}
|
||||
span
|
||||
data-b="kra"
|
||||
data-a="c.ipula"
|
||||
data-h="Type this manually"
|
||||
style="unicode-bidi: bidi-override; direction: rtl;"
|
||||
{}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MangledGoogleEmail {}
|
||||
|
||||
impl Render for MangledGoogleEmail {
|
||||
fn render(&self) -> Markup {
|
||||
html!(
|
||||
span class="eobf eobf-goog" {
|
||||
i id="eobf-en" class="fas fa-envelope" style="margin-right: 5pt" {}
|
||||
i id="eobf-kb" class="fas fa-keyboard" style="margin-right: 5pt" {}
|
||||
span
|
||||
data-c="kra"
|
||||
data-b="rmn"
|
||||
data-a="c.lia"
|
||||
data-h="Type this manually"
|
||||
{}
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user