about summary refs log tree commit diff
path: root/BugMine.Web/Pages/Index.razor
blob: 02f9cd21729551974011f10311692b2214f86ae3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@page "/"

<PageTitle>Home</PageTitle>

<h1>Welcome to BugMine!</h1>
<p>BugMine is a bug/TODO tracker, built ontop of the <a href="https://matrix.org">[Matrix]</a> protocol.</p>

@if (_debug) {
    <p>Beware! This is a DEBUG build, here be dragons!</p>
}

@code {

#if DEBUG
    bool _debug = true;
#else
    bool _debug = false;
#endif

}