Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit 2053695

Browse files
committed
Fixed image source paths
1 parent 6667223 commit 2053695

1 file changed

Lines changed: 4 additions & 15 deletions

File tree

OpenTabletDriver.Web/Views/Wiki/Index.cshtml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<h4 class="pt-2 text-center">Windows</h4>
1515
</div>
1616
<div class="d-flex justify-content-center">
17-
<img class="pt-4 pb-2" height="@imageSize" src="images/platform/Windows_logo_-_2012_derivative.svg"/>
17+
<img class="pt-4 pb-2" height="@imageSize" src="~/images/platform/Windows_logo_-_2012_derivative.svg"/>
1818
</div>
1919
<div class="card-body d-flex flex-column mx-1">
2020
<a class="btn btn-primary my-1" href="Wiki/Install/Windows">
@@ -32,7 +32,7 @@
3232
<h4 class="pt-2 text-center">Linux</h4>
3333
</div>
3434
<div class="d-flex justify-content-center">
35-
<img class="pt-4 pb-2" height="@imageSize" src="images/platform/TuxFlat.svg"/>
35+
<img class="pt-4 pb-2" height="@imageSize" src="~/images/platform/TuxFlat.svg"/>
3636
</div>
3737
<div class="card-body d-flex flex-column mx-1">
3838
<a class="btn btn-primary my-1" href="Wiki/Install/Linux">
@@ -50,7 +50,7 @@
5050
<h4 class="pt-2 text-center">MacOS</h4>
5151
</div>
5252
<div class="d-flex justify-content-center">
53-
<img class="pt-4 pb-2" height="@imageSize" src="images/platform/Apple_Computer_Logo_rainbow.svg"/>
53+
<img class="pt-4 pb-2" height="@imageSize" src="~/images/platform/Apple_Computer_Logo_rainbow.svg"/>
5454
</div>
5555
<div class="card-body d-flex flex-column mx-1">
5656
<a class="btn btn-primary my-1" href="Wiki/Install/MacOS">
@@ -64,15 +64,4 @@
6464
</div>
6565
</div>
6666
</div>
67-
</div>
68-
69-
@section Styles
70-
{
71-
<style>
72-
/*.card-img-top {*/
73-
/* width: 100%;*/
74-
/* padding-top: 100%;*/
75-
/* position: relative;*/
76-
/*}*/
77-
</style>
78-
}
67+
</div>

0 commit comments

Comments
 (0)