Skip to content

Commit

Permalink
style: Rename content component
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasHechenberger committed Dec 6, 2021
1 parent 4a2bac5 commit 83bb33f
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/routes/open-source/[owner]/[repo]/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,11 @@ <h2 class="subtitle">
<div class="container">
<div class="columns under-tabbar">
<div class="column">
<Content>
{#if readme}
{@html readme.content}
{:else}
<i>No readme</i>
<ContentComponent>
{#if readme} {@html readme.content} {:else}
<i>No readme</i>
{/if}
</Content>
</ContentComponent>
</div>
<div class="column is-2 toc">
<MenuList {...subNav} />
Expand Down Expand Up @@ -94,7 +92,7 @@ <h2 class="subtitle">
PageMeta: '../../../../components/utils/PageMeta.html',
NavbarShadow: '../../../../components/layout/NavbarShadow.html',
MenuList: '../../../../components/content/MenuList.html',
Content: '../../../../components/content/Content.html',
ContentComponent: '../../../../components/content/Content.html',
},
};
</script>

0 comments on commit 83bb33f

Please sign in to comment.