Remove blog/cleanup
This commit is contained in:
parent
9fbf336f1f
commit
461e0c412b
8 changed files with 9 additions and 282 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<script lang="ts">
|
||||
export let segment: any;
|
||||
export let rightComponent: any;
|
||||
<script>
|
||||
export let segment;
|
||||
export let rightComponent;
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
|
@ -33,17 +33,12 @@
|
|||
|
||||
<header>
|
||||
<nav class="navbar navbar-expand">
|
||||
<!-- <a class="navbar-brand" href="/"></a>
|
||||
<img class="logo" width="105" height="105" src="{{ site.logo }}" alt="Chris Dill">
|
||||
</a> -->
|
||||
|
||||
<ul class="navbar-nav mr-auto">
|
||||
<li><a aria-current="{segment === undefined ? 'page' : undefined}" href="/">Quartznet</a></li>
|
||||
<li><a aria-current="{segment === 'about' ? 'page' : undefined}" href="/about">About</a></li>
|
||||
|
||||
<!-- for the blog link, we're using rel=prefetch so that Sapper prefetches
|
||||
the blog data when we hover over the link or tap it on a touchscreen -->
|
||||
<li><a rel=prefetch aria-current="{segment === 'blog' ? 'page' : undefined}" href="/blog">Blog</a>
|
||||
<li>
|
||||
<a aria-current="{segment === undefined ? 'page' : undefined}" href="/">Quartznet</a>
|
||||
</li>
|
||||
<li>
|
||||
<a aria-current="{segment === 'about' ? 'page' : undefined}" href="/about">About</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="navbar-nav ml-auto">
|
||||
|
|
|
|||
Loading…
Reference in a new issue