- not actually making use of interactive server functionality - don't need to deal with websocket disconnect when server is restarted - can get necessary functionality using static rendering plus executing js on client when loaded - added page script component to handle loading collocated scripts for pages that also work with enhanced navigation
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
@namespace Blog.Components.Layout
|
|
|
|
<header class="container">
|
|
<div class="title-container">
|
|
<NavLink href="/">
|
|
<h1>journal</h1>
|
|
</NavLink>
|
|
</div>
|
|
<div class="author-container">
|
|
<span>by</span>
|
|
<a href="https://stevanfreeborn.com" target="_blank">
|
|
<img src="https://github.com/StevanFreeborn.png" alt="Stevan Freeborn" />
|
|
<span class="sr-only">Stevan Freeborn</span>
|
|
</a>
|
|
</div>
|
|
</header>
|