mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Use a razor layout.
This commit is contained in:
3
.idea/.idea.DiscImageChef/.idea/contentModel.xml
generated
3
.idea/.idea.DiscImageChef/.idea/contentModel.xml
generated
@@ -1910,6 +1910,9 @@
|
|||||||
<e p="Report" t="Include">
|
<e p="Report" t="Include">
|
||||||
<e p="View.cshtml" t="Include" />
|
<e p="View.cshtml" t="Include" />
|
||||||
</e>
|
</e>
|
||||||
|
<e p="Shared" t="Include">
|
||||||
|
<e p="_Layout.cshtml" t="Include" />
|
||||||
|
</e>
|
||||||
<e p="Stats" t="Include">
|
<e p="Stats" t="Include">
|
||||||
<e p="Index.cshtml" t="Include" />
|
<e p="Index.cshtml" t="Include" />
|
||||||
</e>
|
</e>
|
||||||
|
|||||||
@@ -323,6 +323,7 @@
|
|||||||
<Content Include="Views\Home\PULL_REQUEST_TEMPLATE.cshtml" />
|
<Content Include="Views\Home\PULL_REQUEST_TEMPLATE.cshtml" />
|
||||||
<Content Include="Views\Home\TODO.cshtml" />
|
<Content Include="Views\Home\TODO.cshtml" />
|
||||||
<Content Include="Views\Report\View.cshtml" />
|
<Content Include="Views\Report\View.cshtml" />
|
||||||
|
<Content Include="Views\Shared\_Layout.cshtml" />
|
||||||
<Content Include="Web.config" />
|
<Content Include="Web.config" />
|
||||||
<Content Include="Web.Debug.config">
|
<Content Include="Web.Debug.config">
|
||||||
<DependentUpon>Web.config</DependentUpon>
|
<DependentUpon>Web.config</DependentUpon>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef's code of conduct:
|
DiscImageChef's code of conduct:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
How to contribute to DiscImageChef:
|
How to contribute to DiscImageChef:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef list of changes:
|
DiscImageChef list of changes:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef list of things to be donated:
|
DiscImageChef list of things to be donated:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef's template for issue reports:
|
DiscImageChef's template for issue reports:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,32 +35,6 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|
||||||
name="viewport">
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
<header>
|
||||||
Welcome to
|
Welcome to
|
||||||
<i>
|
<i>
|
||||||
@@ -69,36 +44,4 @@
|
|||||||
</a>
|
</a>
|
||||||
</i> Server version @ViewBag.lblVersion
|
</i> Server version @ViewBag.lblVersion
|
||||||
</header>
|
</header>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef's template for pull requests:
|
DiscImageChef's template for pull requests:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
@{
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
ViewBag.Title = "DiscImageChef";
|
ViewBag.Title = "DiscImageChef";
|
||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
@@ -34,64 +35,8 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<p>
|
<p>
|
||||||
@Html.ActionLink("Return to main page.", "Index")<br />
|
@Html.ActionLink("Return to main page.", "Index")<br />
|
||||||
DiscImageChef list of things to do:
|
DiscImageChef list of things to do:
|
||||||
</p>
|
</p>
|
||||||
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
<div class="container">@Html.Raw(ViewBag.Markdown)</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
@@ -1,4 +1,8 @@
|
|||||||
@using DiscImageChef.CommonTypes.Metadata
|
@using DiscImageChef.CommonTypes.Metadata
|
||||||
|
@{
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
|
ViewBag.Title = "DiscImageChef Device Report";
|
||||||
|
}
|
||||||
@{
|
@{
|
||||||
// /***************************************************************************
|
// /***************************************************************************
|
||||||
// The Disc Image Chef
|
// The Disc Image Chef
|
||||||
@@ -32,29 +36,6 @@
|
|||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
}
|
}
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<title>DiscImageChef Device Report</title>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
DiscImageChef Report for
|
DiscImageChef Report for
|
||||||
@ViewBag.lblManufacturer
|
@ViewBag.lblManufacturer
|
||||||
@@ -281,36 +262,4 @@ DiscImageChef Report for
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<footer class="container-fluid">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
90
DiscImageChef.Server/Views/Shared/_Layout.cshtml
Normal file
90
DiscImageChef.Server/Views/Shared/_Layout.cshtml
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
@{
|
||||||
|
// /***************************************************************************
|
||||||
|
// The Disc Image Chef
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Filename : _Layout.cshtml
|
||||||
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||||
|
//
|
||||||
|
// Component : DiscImageChef Server.
|
||||||
|
//
|
||||||
|
// --[ Description ] ----------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Contains layout.
|
||||||
|
//
|
||||||
|
// --[ License ] --------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This library is free software; you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU Lesser General Public License as
|
||||||
|
// published by the Free Software Foundation; either version 2.1 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This library is distributed in the hope that it will be useful, but
|
||||||
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
// Lesser General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public
|
||||||
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
|
// ****************************************************************************/
|
||||||
|
}
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<head>
|
||||||
|
<link href="../../styles/dicserver.css"
|
||||||
|
rel="stylesheet"type="text/css" />
|
||||||
|
<link href="../../styles/dicserver_highcharts.css"
|
||||||
|
rel="stylesheet"type="text/css" />
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<title>@ViewBag.Title</title>
|
||||||
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
|
<script async
|
||||||
|
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
||||||
|
<script>
|
||||||
|
window.dataLayer = window.dataLayer || [];
|
||||||
|
|
||||||
|
function gtag() { dataLayer.push(arguments); }
|
||||||
|
|
||||||
|
gtag('js', new Date());
|
||||||
|
|
||||||
|
gtag('config', 'UA-111466173-1');
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
@RenderBody()
|
||||||
|
<footer class="container-fluid">
|
||||||
|
© 2011-2019
|
||||||
|
<a href="http://www.claunia.com"
|
||||||
|
target="_blank">
|
||||||
|
Claunia.com
|
||||||
|
</a><br />
|
||||||
|
Fonts are © 2015-2016
|
||||||
|
<a href="http://int10h.org"
|
||||||
|
target="_blank">
|
||||||
|
VileR
|
||||||
|
</a><br />
|
||||||
|
CSS © 2018-2019
|
||||||
|
<a href="https://getbootstrap.com/"
|
||||||
|
target="_blank">
|
||||||
|
Bootstrap
|
||||||
|
</a> and
|
||||||
|
<a href="http://www.claunia.com"
|
||||||
|
target="_blank">
|
||||||
|
Claunia.com
|
||||||
|
</a>
|
||||||
|
</footer>
|
||||||
|
<script crossorigin="anonymous"
|
||||||
|
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
||||||
|
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||||
|
<script crossorigin="anonymous"
|
||||||
|
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
||||||
|
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
||||||
|
<script crossorigin="anonymous"
|
||||||
|
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
||||||
|
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -39,36 +39,8 @@
|
|||||||
}
|
}
|
||||||
@{
|
@{
|
||||||
ViewBag.Title = "DiscImageChef Statistics";
|
ViewBag.Title = "DiscImageChef Statistics";
|
||||||
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||||||
}
|
}
|
||||||
|
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<meta content="width=device-width, initial-scale=1.0"
|
|
||||||
name="viewport">
|
|
||||||
<title>@ViewBag.Title</title>
|
|
||||||
<link href="../../styles/dicserver.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<link href="../../styles/dicserver_highcharts.css"
|
|
||||||
rel="stylesheet"type="text/css" />
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
||||||
<script async
|
|
||||||
src="https://www.googletagmanager.com/gtag/js?id=UA-111466173-1"></script>
|
|
||||||
<script>
|
|
||||||
window.dataLayer = window.dataLayer || [];
|
|
||||||
|
|
||||||
function gtag() { dataLayer.push(arguments); }
|
|
||||||
|
|
||||||
gtag('js', new Date());
|
|
||||||
|
|
||||||
gtag('config', 'UA-111466173-1');
|
|
||||||
</script>
|
|
||||||
<script src="http://code.highcharts.com/highcharts.js"></script>
|
|
||||||
<script src="https://code.highcharts.com/modules/exporting.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<header>
|
<header>
|
||||||
Welcome to
|
Welcome to
|
||||||
<i>
|
<i>
|
||||||
@@ -682,39 +654,6 @@
|
|||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
|
||||||
<footer class="container-fluid mt-3">
|
|
||||||
© 2011-2019
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a><br />
|
|
||||||
Fonts are © 2015-2016
|
|
||||||
<a href="http://int10h.org"
|
|
||||||
target="_blank">
|
|
||||||
VileR
|
|
||||||
</a><br />
|
|
||||||
CSS © 2018-2019
|
|
||||||
<a href="https://getbootstrap.com/"
|
|
||||||
target="_blank">
|
|
||||||
Bootstrap
|
|
||||||
</a> and
|
|
||||||
<a href="http://www.claunia.com"
|
|
||||||
target="_blank">
|
|
||||||
Claunia.com
|
|
||||||
</a>
|
|
||||||
</footer>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
|
|
||||||
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
|
|
||||||
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
|
|
||||||
<script crossorigin="anonymous"
|
|
||||||
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
|
|
||||||
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
||||||
@{
|
@{
|
||||||
string highChartsTitleColor = "#AAAAAA";
|
string highChartsTitleColor = "#AAAAAA";
|
||||||
|
|||||||
Reference in New Issue
Block a user