parent
ca2365ec54
commit
e5847bbece
@ -0,0 +1 @@
|
|||||||
|
@layout AdminLayout
|
@ -0,0 +1,3 @@
|
|||||||
|
@page "/admin"
|
||||||
|
@layout AdminLayout
|
||||||
|
<h3>index Admin</h3>
|
@ -0,0 +1,22 @@
|
|||||||
|
@page "/episodes"
|
||||||
|
@layout DoctorWhoLayou
|
||||||
|
|
||||||
|
<h2>Episodes</h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.bbc.co.uk/programmes/p00vfknq">
|
||||||
|
<em>The Ribos Operation</em>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.bbc.co.uk/programmes/p00vfdsb">
|
||||||
|
<em>The Sun Makers</em>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="https://www.bbc.co.uk/programmes/p00vhc26">
|
||||||
|
<em>Nightmare of Eden</em>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
@ -1,6 +1,3 @@
|
|||||||
@page "/list"
|
@page "/list"
|
||||||
<h3>List</h3>
|
|
||||||
|
|
||||||
@code {
|
<h3>List</h3>
|
||||||
|
|
||||||
}
|
|
@ -0,0 +1,11 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1>Admin Layout</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
@Body
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
Le footer
|
||||||
|
</footer>
|
@ -0,0 +1,23 @@
|
|||||||
|
@inherits LayoutComponentBase
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1>Doctor Who™ Episode Database</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<nav>
|
||||||
|
<a href="masterlist">Master Episode List</a>
|
||||||
|
<a href="search">Search</a>
|
||||||
|
<a href="new">Add Episode</a>
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
@Body
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
@TrademarkMessage
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
@code {
|
||||||
|
public string TrademarkMessage { get; set; } =
|
||||||
|
"Doctor Who is a registered trademark of the BBC. " +
|
||||||
|
"https://www.doctorwho.tv/";
|
||||||
|
}
|
Loading…
Reference in new issue