about summary refs log tree commit diff
path: root/Utilities/LibMatrix.FederationTest/Pages/IndexPage.cshtml
blob: 283c13e7a7091ebdce0e0b1222b40bddad205ab5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@page "/"
@model LibMatrix.FederationTest.Pages.IndexPage

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
    <head>
        <title>LibMatrix.FederationTest</title>
    </head>
    <body>
        <div>
            If you're seeing this, LibMatrix.FederationTest is running!
        </div>
    </body>
</html>