Reorganize

This commit is contained in:
2025-11-02 11:08:51 -08:00
parent 14d8a9b00c
commit fd48f75245
75 changed files with 8 additions and 17 deletions

View 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"
{}
}
)
}
}