-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.cshtml
110 lines (93 loc) · 2.7 KB
/
Index.cshtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@page
@model Holding.IndexModel
@{
//var domainName = "";
//var host = HttpContext.Request.Host;
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@Model.Domain</title>
<!--
Open Sans (Normal 400) for paragraphs
Open Sans (Normal 400 Italic) for italic text within paragraphs
Open Sans (Bold 700) for bold text within paragraphs and headings
Open Sans (Bold 700 Italic) for italic boold text within paragraphs and headings
http://www.google.com/fonts/#UsePlace:use/Collection:Open+Sans:400italic,700italic,400,700
-->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>
<style>
body
{
font-family: 'Open Sans', sans-serif;
font-weight: 400;
margin: 0;
padding: 0;
color: #444444;
}
header
{
width: 100%;
background-color: #F1F1F1;
margin: 0;
padding: 40px 0 10px 0;
border-bottom: 1px solid #CCCCCC;
}
h1
{
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-size: 48px;
color: #222222;
margin: 0px auto 0px auto;
padding: 0 10px 0 10px;
max-width: 960px;
}
.domain
{
color: #FF9900;
}
main
{
margin: 0px auto 0px auto;
font-size: 16px;
max-width: 960px;
}
a
{
color: #0099FF;
text-decoration: none;
border-bottom: 1px solid #0099FF;
}
a:hover
{
color: #FF9900;
border-bottom: 1px solid #FF9900;
}
p {
font-size: 16px;
line-height: 1.5em;
margin: 10px;
}
footer {
margin: 0px auto 0px auto;
font-size: 10px;
max-width: 960px;
text-align: left;
padding: 100px 10px 0 10px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to <span class="domain">@Model.Domain</span></h1>
</header>
<main role="main">
<p>The domain <span class="domain">@Model.Domain</span> is registered, but currently inactive. Please visit <a href="https://slickhouse.com">slickhouse.com</a></p>
</main>
<footer>
© @DateTime.Now.Year.ToString() Slickhouse / Matthew Juffs
</footer>
</body>
</html>