html tweaks

This commit is contained in:
Collin Barrett 2018-02-16 06:05:14 -06:00
parent 228d3c7274
commit 17fc668e7d
2 changed files with 5 additions and 9 deletions

View file

@ -1,13 +1,7 @@
@{
ViewData["Title"] = "Home";
ViewData["Title"] = "Protect privacy. Be Secure. Customize your web.";
}
<div id="react-app">Loading...</div>
<noscript>
<p>FilterLists is built with ReactJS and therefore requires first-party JavaScript to be enabled. We do not use any third-party JavaScript, and your privacy is very important to us. If you prefer not to enable JavaScript or your browser does not support it, the data is largely available on <a href="https://github.com/collinbarrett/FilterLists">our GitHub repo</a>.</p>
</noscript>
@section scripts {
<script src="~/dist/main.js" asp-append-version="true"></script>
}

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>@ViewData["Title"] - FilterLists</title>
<title>FilterLists | @ViewData["Title"]</title>
<base href="~/"/>
<meta name="description" content="FilterLists is the independent and comprehensive directory of all public filter and hosts lists for advertisements, trackers, malware, and annoyances. Project by Collin M. Barrett."/>
<link rel="icon" type="image/png" href="icon_filterlists.png">
@ -14,8 +14,10 @@
</head>
<body>
@RenderBody()
<script src="~/dist/vendor.js" asp-append-version="true"></script>
@RenderSection("scripts", false)
<noscript>
<p>FilterLists is built with ReactJS and therefore requires first-party JavaScript to be enabled. We do not use any third-party JavaScript, and your privacy is very important to us. If you prefer not to enable JavaScript or your browser does not support it, the data is largely available on <a href="https://github.com/collinbarrett/FilterLists">our GitHub repo</a>.</p>
</noscript>
</body>
</html>