Slight tweaks and JSON-LD
This commit is contained in:
1
src/.well-known/appspecific/com.chrome.devtools.json
Normal file
1
src/.well-known/appspecific/com.chrome.devtools.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
@@ -89,6 +89,42 @@ p {
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
list-style: none;
|
||||
margin: 0 0 1rem;
|
||||
padding: 0;
|
||||
font-size: 0.9rem;
|
||||
color: var(--text-muted);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.35rem;
|
||||
}
|
||||
|
||||
.breadcrumb li {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.breadcrumb li:not(:last-child)::after {
|
||||
content: '›';
|
||||
margin-left: 0.35rem;
|
||||
color: var(--text-muted);
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.breadcrumb a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.breadcrumb a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.breadcrumb [aria-current='page'] {
|
||||
color: var(--text-main);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@@ -39,9 +39,69 @@
|
||||
href="/assets/images/apple-touch-icon.png"
|
||||
/>
|
||||
<link rel="stylesheet" href="/assets/css/site.css" />
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "FAQPage",
|
||||
"mainEntity": [
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "My email won't send?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Check that you're using your full email address for both incoming and outgoing username, and that the port is 587 or 465."
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "SSL/TLS errors?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Ensure SSL or STARTTLS is enabled for both incoming and outgoing mail."
|
||||
}
|
||||
},
|
||||
{
|
||||
"@type": "Question",
|
||||
"name": "Still stuck?",
|
||||
"acceptedAnswer": {
|
||||
"@type": "Answer",
|
||||
"text": "Contact postmaster@mifi.holdings. Please include any error messages, your mail app, and a screenshot if you can!"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "BreadcrumbList",
|
||||
"itemListElement": [
|
||||
{
|
||||
"@type": "ListItem",
|
||||
"position": 1,
|
||||
"name": "Home",
|
||||
"item": "https://mail.mifi.holdings"
|
||||
},
|
||||
{
|
||||
"@type": "ListItem",
|
||||
"position": 2,
|
||||
"name": "Email Setup & Help",
|
||||
"item": "https://mail.mifi.holdings/help"
|
||||
}
|
||||
]
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container faq">
|
||||
<nav aria-label="Breadcrumb">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="/">Home</a></li>
|
||||
<li aria-current="page">Email Setup & Help</li>
|
||||
</ol>
|
||||
</nav>
|
||||
<h1 class="text-center">Welcome to Email from mifi Ventures</h1>
|
||||
<div class="intro">
|
||||
<strong>Let's get your inbox ready! 📬</strong><br />
|
||||
|
||||
@@ -39,6 +39,22 @@
|
||||
href="/assets/images/apple-touch-icon.png"
|
||||
/>
|
||||
<link rel="stylesheet" href="/assets/css/site.css" />
|
||||
|
||||
<script type="application/ld+json">
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "WebSite",
|
||||
"name": "mifi Holdings Mail",
|
||||
"url": "https://mail.mifi.holdings",
|
||||
"description": "The mifi Holdings mail services hub—here you can find help with setting up your email, changing your password, and accessing webmail.",
|
||||
"publisher": {
|
||||
"@type": "Organization",
|
||||
"name": "mifi Ventures",
|
||||
"url": "https://mifi.ventures",
|
||||
"email": "postmaster@mifi.holdings"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container text-center">
|
||||
|
||||
Reference in New Issue
Block a user