This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (d) { | |
const elNames = d.querySelectorAll('.docos-anchoredreplyview-authortimestamp') | |
const elAvatars = d.querySelectorAll('.docos-anchoredreplyview-avatar-holder') | |
const color = '#F8F9FA' | |
elNames.forEach(el => { | |
el.firstChild.style.color = color | |
el.firstChild.style.backgroundColor = color | |
el.lastChild.style.visibility = 'hidden' | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="view-bare"> | |
<app-navbar/> | |
<div id="wrapper"> | |
<slot></slot> | |
</div> | |
<app-footer/> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="view-default"> | |
<header class="header"> | |
<app-navbar v-bind:isFixedTop="true" /> | |
</header> | |
<div id="wrapper"> | |
<slot></slot> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<view-default> | |
<div v-if="$apollo.loading"> | |
<p>loading...</p> | |
</div> | |
<div v-else-if="legals"> | |
<section class="hero is-info"> | |
<div class="hero-body"> | |
<div class="container"> | |
<h1 class="title">{{ title }}</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<view-default> | |
<div v-if="$apollo.loading"> | |
<LoadingState/> | |
</div> | |
<div v-else-if="homepage"> | |
<section class="hero is-fullheight-with-navbar is-info"> | |
<div class="hero-body"> | |
<div class="container"> | |
<h1 class="title">{{ intro }}</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<view-default> | |
<div v-if="$apollo.loading"> | |
<p>loading...</p> | |
</div> | |
<div v-else-if="legals"> | |
<section class="hero is-medium is-info"> | |
<div class="hero-body"> | |
<div class="container"> | |
<h1 class="title">{{ title }}</h1> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<view-default> | |
<h1>Title {{$route.params.slug}}</h1> | |
<p v-if="pages[0].header">{{pages[0].header.title_en}}</p> | |
<p v-if="pages[0].header">{{pages[0].header.description_en}}</p> | |
</view-default> | |
</template> | |
<script> | |
// @ is an alias to /src |
NewerOlder