update pathPrefix
@@ -12,10 +12,10 @@ navLinks:
|
||||
expandable: false
|
||||
submenu:
|
||||
- title: Page2
|
||||
path: /page2
|
||||
path: /threefold/page2
|
||||
|
||||
- title: Page3
|
||||
path: /page3
|
||||
path: /threefold/page3
|
||||
|
||||
- name: People
|
||||
link: /people
|
||||
@@ -28,10 +28,10 @@ navLinks:
|
||||
expandable: false
|
||||
submenu:
|
||||
- title: NewsRoom
|
||||
path: /news
|
||||
path: /threefold/news
|
||||
|
||||
- title: Blog
|
||||
path: /blog
|
||||
path: /threefold/blog
|
||||
|
||||
- title: Community
|
||||
path: https://forums.threefold.io/
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
|
||||
module.exports = {
|
||||
siteName: 'Threefold Webstack',
|
||||
pathPrefix: 'threefold',
|
||||
plugins: [
|
||||
|
||||
// Local models
|
||||
|
||||
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
Before Width: | Height: | Size: 3.1 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 687 B |
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 687 B |
@@ -11,7 +11,7 @@
|
||||
<div class="inline-flex items-center flex-shrink-0">
|
||||
<a href="/" class="flex">
|
||||
<img
|
||||
src="/img/TFN_black.svg"
|
||||
:src="require(`!!assets-loader!@images/TFN_black.svg`)"
|
||||
class="mr-3 fill-current"
|
||||
width="180"
|
||||
v-if="theme == 'light'"
|
||||
@@ -19,12 +19,28 @@
|
||||
/>
|
||||
|
||||
<img
|
||||
src="/img/TFN_white.svg"
|
||||
:src="require(`!!assets-loader!@images/TFN_black.svg`)"
|
||||
class="mr-3 fill-current"
|
||||
width="180"
|
||||
v-else
|
||||
alt=""
|
||||
/>
|
||||
|
||||
<!-- <g-image
|
||||
v-if="theme == 'light'"
|
||||
width="180"
|
||||
class="mr-3 fill-current"
|
||||
:src="require(`!!assets-loader!@images/TFN_black.svg`)"
|
||||
alt=""
|
||||
/>
|
||||
<g-image
|
||||
v-else
|
||||
width="180"
|
||||
class="mr-3 fill-current"
|
||||
:src="require(`!!assets-loader!@images/TFN_white.svg`)"
|
||||
alt=""
|
||||
/> -->
|
||||
|
||||
<!-- <span
|
||||
class="hidden md:block font-semibold text-xl tracking-tight"
|
||||
>{{ $static.metadata.siteName }}</span
|
||||
@@ -214,7 +230,7 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
</header>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
@@ -9,14 +9,14 @@
|
||||
<div class="space-y-8 xl:col-span-1">
|
||||
<g-image
|
||||
class="h-10"
|
||||
src="/img/tf_icon_black.svg"
|
||||
:src="require(`!!assets-loader!@images/tf_icon_black.svg`)"
|
||||
alt="Company name"
|
||||
v-if="theme == 'light'"
|
||||
/>
|
||||
|
||||
<g-image
|
||||
class="h-10"
|
||||
src="/img/tf_icon_white.svg"
|
||||
:src="require(`!!assets-loader!@images/tf_icon_white.svg`)"
|
||||
alt="Company name"
|
||||
v-else
|
||||
/>
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
class="container sm:pxi-0 mx-auto"
|
||||
:style="{ 'min-height': contentHeight + 'px' }"
|
||||
>
|
||||
<img
|
||||
<g-image
|
||||
v-if="loading"
|
||||
class="m-auto"
|
||||
src="/img/loader.gif"
|
||||
:src="require(`!!assets-loader!@images/loader.gif`)"
|
||||
alt=""
|
||||
/>
|
||||
<div
|
||||
|
||||