Compare commits
9
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3dae60ac7a | ||
|
|
22edce91ab | ||
|
|
78800c7379 | ||
|
|
a0bd0073bb | ||
|
|
3ca74956a6 | ||
|
|
22b8d091f4 | ||
|
|
bd7a34966c | ||
|
|
2be5b48324 | ||
|
|
4ad88a327e |
+1
-1
@@ -10,7 +10,7 @@
|
||||
main() {
|
||||
DART_SASS_VERSION=1.97.1
|
||||
GO_VERSION=1.25.5
|
||||
HUGO_VERSION=0.154.5
|
||||
HUGO_VERSION=0.157.0
|
||||
NODE_VERSION=24.12.0
|
||||
|
||||
export TZ=Europe/Oslo
|
||||
|
||||
@@ -82,7 +82,8 @@
|
||||
}
|
||||
|
||||
.article-time,
|
||||
.article-translations {
|
||||
.article-translations,
|
||||
.article-header-tags {
|
||||
display: flex;
|
||||
color: var(--card-text-color-tertiary);
|
||||
gap: 15px;
|
||||
@@ -112,7 +113,8 @@
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.article-translations {
|
||||
.article-translations,
|
||||
.article-header-tags {
|
||||
& > div {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
@@ -205,8 +207,8 @@
|
||||
border-radius: var(--card-border-radius);
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
height: 350px;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
box-shadow: var(--shadow-l1);
|
||||
transition: box-shadow 0.3s ease;
|
||||
background-color: var(--card-background);
|
||||
|
||||
@@ -0,0 +1,199 @@
|
||||
.cookie-banner {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 9999;
|
||||
padding: var(--container-padding);
|
||||
|
||||
&[aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-banner__content {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
background: var(--card-background);
|
||||
border-radius: var(--card-border-radius);
|
||||
box-shadow: var(--shadow-l3);
|
||||
padding: var(--card-padding);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
|
||||
@include respond(md) {
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-banner__text {
|
||||
flex: 1;
|
||||
min-width: 200px;
|
||||
|
||||
strong {
|
||||
display: block;
|
||||
color: var(--card-text-color-main);
|
||||
font-size: 1.6rem;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--card-text-color-secondary);
|
||||
font-size: 1.4rem;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-banner__actions {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.cookie-banner__settings-link {
|
||||
width: auto;
|
||||
align-self: flex-start;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--accent-color);
|
||||
font-size: 1.3rem;
|
||||
cursor: pointer;
|
||||
padding: 5px;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
@include respond(md) {
|
||||
width: auto;
|
||||
margin-left: auto;
|
||||
align-self: center;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-btn {
|
||||
padding: 10px 20px;
|
||||
border-radius: var(--tag-border-radius);
|
||||
font-size: 1.4rem;
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
border: none;
|
||||
|
||||
&--primary {
|
||||
background: var(--accent-color);
|
||||
color: var(--accent-color-text);
|
||||
|
||||
&:hover {
|
||||
background: var(--accent-color-darker);
|
||||
}
|
||||
}
|
||||
|
||||
&--secondary {
|
||||
background: transparent;
|
||||
color: var(--card-text-color-main);
|
||||
border: 1.5px solid var(--card-separator-color);
|
||||
|
||||
&:hover {
|
||||
background: var(--card-background-selected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Cookie settings panel
|
||||
.cookie-settings {
|
||||
padding-top: 20px;
|
||||
border-top: 1.5px solid var(--card-separator-color);
|
||||
|
||||
&[aria-hidden="true"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: var(--card-text-color-main);
|
||||
font-size: 1.6rem;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
|
||||
&__actions {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.cookie-category {
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid var(--card-separator-color);
|
||||
|
||||
&:last-of-type {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
cursor: pointer;
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
accent-color: var(--accent-color);
|
||||
cursor: pointer;
|
||||
|
||||
&:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
}
|
||||
|
||||
strong {
|
||||
color: var(--card-text-color-main);
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
color: var(--card-text-color-secondary);
|
||||
font-size: 1.3rem;
|
||||
margin: 8px 0 0 28px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
}
|
||||
|
||||
// Footer link for reopening settings
|
||||
.cookie-settings-link {
|
||||
display: inline-block;
|
||||
color: var(--body-text-color);
|
||||
font-size: 1.2rem;
|
||||
cursor: pointer;
|
||||
background: none;
|
||||
border: none;
|
||||
padding: 0;
|
||||
|
||||
&:hover {
|
||||
color: var(--accent-color);
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
// Comments placeholder when consent not given
|
||||
.consent-placeholder {
|
||||
background: var(--card-background);
|
||||
border-radius: var(--card-border-radius);
|
||||
padding: var(--card-padding);
|
||||
text-align: center;
|
||||
color: var(--card-text-color-secondary);
|
||||
font-size: 1.4rem;
|
||||
|
||||
p {
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
}
|
||||
@@ -242,8 +242,6 @@
|
||||
margin-right: 15px;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
|
||||
.article-title {
|
||||
font-size: 1.8rem;
|
||||
|
||||
@@ -56,8 +56,6 @@
|
||||
width: max-content;
|
||||
|
||||
article {
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
margin-right: 20px;
|
||||
flex-shrink: 0;
|
||||
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
@import "partials/layout/list.scss";
|
||||
@import "partials/layout/404.scss";
|
||||
@import "partials/layout/search.scss";
|
||||
@import "partials/cookies.scss";
|
||||
|
||||
@import "general.scss";
|
||||
@import "custom.scss";
|
||||
|
||||
@@ -0,0 +1,221 @@
|
||||
interface ConsentState {
|
||||
necessary: boolean;
|
||||
analytics: boolean;
|
||||
functional: boolean;
|
||||
timestamp: number;
|
||||
}
|
||||
|
||||
class CookieConsent {
|
||||
private static COOKIE_NAME = 'cookie_consent';
|
||||
private static COOKIE_DAYS = 365;
|
||||
|
||||
private state: ConsentState | null = null;
|
||||
private banner: HTMLElement | null = null;
|
||||
private settingsPanel: HTMLElement | null = null;
|
||||
|
||||
constructor() {
|
||||
this.banner = document.getElementById('cookie-consent-banner');
|
||||
this.settingsPanel = document.getElementById('cookie-settings-panel');
|
||||
|
||||
this.state = this.loadState();
|
||||
|
||||
if (!this.state && this.banner) {
|
||||
this.showBanner();
|
||||
}
|
||||
|
||||
this.bindEvents();
|
||||
this.dispatchConsentEvent();
|
||||
}
|
||||
|
||||
private loadState(): ConsentState | null {
|
||||
const cookie = document.cookie
|
||||
.split('; ')
|
||||
.find(row => row.startsWith(CookieConsent.COOKIE_NAME + '='));
|
||||
|
||||
if (!cookie) return null;
|
||||
|
||||
try {
|
||||
return JSON.parse(decodeURIComponent(cookie.split('=')[1]));
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
private saveState(): void {
|
||||
if (!this.state) return;
|
||||
|
||||
const expires = new Date();
|
||||
expires.setDate(expires.getDate() + CookieConsent.COOKIE_DAYS);
|
||||
|
||||
document.cookie = `${CookieConsent.COOKIE_NAME}=${encodeURIComponent(JSON.stringify(this.state))}; expires=${expires.toUTCString()}; path=/; SameSite=Lax`;
|
||||
}
|
||||
|
||||
private showBanner(): void {
|
||||
if (this.banner) {
|
||||
this.banner.removeAttribute('aria-hidden');
|
||||
}
|
||||
}
|
||||
|
||||
private hideBanner(): void {
|
||||
if (this.banner) {
|
||||
// Blur any focused element inside the banner before hiding
|
||||
const activeElement = document.activeElement as HTMLElement;
|
||||
if (activeElement && this.banner.contains(activeElement)) {
|
||||
activeElement.blur();
|
||||
}
|
||||
this.banner.setAttribute('aria-hidden', 'true');
|
||||
}
|
||||
this.hideSettings();
|
||||
}
|
||||
|
||||
private showSettings(): void {
|
||||
if (this.settingsPanel) {
|
||||
this.settingsPanel.removeAttribute('aria-hidden');
|
||||
|
||||
// Restore checkbox states from current state or defaults
|
||||
const checkboxes = this.settingsPanel.querySelectorAll('input[data-cookie-category]');
|
||||
checkboxes.forEach((cb) => {
|
||||
const input = cb as HTMLInputElement;
|
||||
const category = input.dataset.cookieCategory as keyof ConsentState;
|
||||
if (category && this.state && typeof this.state[category] === 'boolean') {
|
||||
input.checked = this.state[category] as boolean;
|
||||
} else {
|
||||
input.checked = false;
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
private hideSettings(): void {
|
||||
if (this.settingsPanel) {
|
||||
// Blur any focused element inside the settings panel before hiding
|
||||
const activeElement = document.activeElement as HTMLElement;
|
||||
if (activeElement && this.settingsPanel.contains(activeElement)) {
|
||||
activeElement.blur();
|
||||
}
|
||||
this.settingsPanel.setAttribute('aria-hidden', 'true');
|
||||
}
|
||||
}
|
||||
|
||||
private bindEvents(): void {
|
||||
document.addEventListener('click', (e) => {
|
||||
const target = e.target as HTMLElement;
|
||||
const action = target.dataset.cookieAction;
|
||||
|
||||
if (!action) return;
|
||||
|
||||
switch (action) {
|
||||
case 'accept':
|
||||
this.acceptAll();
|
||||
break;
|
||||
case 'deny':
|
||||
this.denyAll();
|
||||
break;
|
||||
case 'settings':
|
||||
this.showSettings();
|
||||
break;
|
||||
case 'save':
|
||||
this.saveSettings();
|
||||
break;
|
||||
case 'cancel':
|
||||
this.hideSettings();
|
||||
break;
|
||||
case 'reopen':
|
||||
this.showBanner();
|
||||
break;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private acceptAll(): void {
|
||||
this.state = {
|
||||
necessary: true,
|
||||
analytics: true,
|
||||
functional: true,
|
||||
timestamp: Date.now()
|
||||
};
|
||||
this.saveState();
|
||||
this.hideBanner();
|
||||
this.dispatchConsentEvent();
|
||||
}
|
||||
|
||||
private denyAll(): void {
|
||||
this.state = {
|
||||
necessary: true,
|
||||
analytics: false,
|
||||
functional: false,
|
||||
timestamp: Date.now()
|
||||
};
|
||||
this.saveState();
|
||||
this.hideBanner();
|
||||
this.dispatchConsentEvent();
|
||||
}
|
||||
|
||||
private saveSettings(): void {
|
||||
const checkboxes = document.querySelectorAll('input[data-cookie-category]');
|
||||
|
||||
this.state = {
|
||||
necessary: true,
|
||||
analytics: false,
|
||||
functional: false,
|
||||
timestamp: Date.now()
|
||||
};
|
||||
|
||||
checkboxes.forEach((cb) => {
|
||||
const input = cb as HTMLInputElement;
|
||||
const category = input.dataset.cookieCategory as keyof ConsentState;
|
||||
if (category && category in this.state!) {
|
||||
(this.state as any)[category] = input.checked;
|
||||
}
|
||||
});
|
||||
|
||||
this.saveState();
|
||||
this.hideBanner();
|
||||
this.dispatchConsentEvent();
|
||||
}
|
||||
|
||||
private dispatchConsentEvent(): void {
|
||||
const event = new CustomEvent('onCookieConsentChange', {
|
||||
detail: this.state
|
||||
});
|
||||
window.dispatchEvent(event);
|
||||
|
||||
// Set data attributes on document for CSS-based control
|
||||
if (this.state) {
|
||||
document.documentElement.dataset.consentAnalytics = String(this.state.analytics);
|
||||
document.documentElement.dataset.consentFunctional = String(this.state.functional);
|
||||
}
|
||||
}
|
||||
|
||||
// Public API
|
||||
public hasConsent(category: keyof Omit<ConsentState, 'timestamp'>): boolean {
|
||||
if (!this.state) return false;
|
||||
return this.state[category] ?? false;
|
||||
}
|
||||
|
||||
public getState(): ConsentState | null {
|
||||
return this.state;
|
||||
}
|
||||
|
||||
public reopenBanner(): void {
|
||||
this.showBanner();
|
||||
}
|
||||
}
|
||||
|
||||
// Export for module usage
|
||||
export default CookieConsent;
|
||||
|
||||
// Initialize when DOM is ready and expose globally
|
||||
declare global {
|
||||
interface Window {
|
||||
cookieConsent: CookieConsent;
|
||||
}
|
||||
}
|
||||
|
||||
if (document.readyState === 'loading') {
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
window.cookieConsent = new CookieConsent();
|
||||
});
|
||||
} else {
|
||||
window.cookieConsent = new CookieConsent();
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
[hugoVersion]
|
||||
extended = true
|
||||
min = "0.154.0"
|
||||
min = "0.157.0"
|
||||
|
||||
@@ -24,6 +24,10 @@ SortBy = "default"
|
||||
toc = true
|
||||
readingTime = true
|
||||
|
||||
[article.list]
|
||||
# Showing article tags in the list view (e.g. homepage, section pages)
|
||||
showTags = false
|
||||
|
||||
[article.license]
|
||||
enabled = false
|
||||
default = "Licensed under CC BY-NC-SA 4.0"
|
||||
@@ -71,11 +75,23 @@ SortBy = "default"
|
||||
toggle = true
|
||||
default = "auto"
|
||||
|
||||
[imageProcessing.cover]
|
||||
enabled = true
|
||||
[imageProcessing]
|
||||
[imageProcessing.content]
|
||||
widths = [800, 1600, 2400]
|
||||
enabled = true
|
||||
|
||||
[imageProcessing.content]
|
||||
enabled = true
|
||||
[imageProcessing.thumbnail]
|
||||
enabled = true
|
||||
|
||||
# GDPR Cookie Consent Configuration
|
||||
# When enabled, analytics and functional cookies require user consent
|
||||
[cookies]
|
||||
enabled = false
|
||||
showSettings = true
|
||||
|
||||
[cookies.categories]
|
||||
analytics = true
|
||||
functional = true
|
||||
|
||||
[comments]
|
||||
enabled = true
|
||||
|
||||
@@ -28,3 +28,12 @@ favicon = "img/avatar.png"
|
||||
# See complete configuration in config/_default/params.toml
|
||||
enabled = true
|
||||
provider = "disqus"
|
||||
|
||||
# GDPR Cookie Consent Configuration
|
||||
# When enabled, analytics and functional cookies require user consent
|
||||
[cookies]
|
||||
enabled = false
|
||||
|
||||
[cookies.categories]
|
||||
analytics = true
|
||||
functional = true
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "الوضع الداكن"
|
||||
[footer]
|
||||
builtWith = "مبني باستخدام {{ .Generator }}"
|
||||
designedBy = "قالب {{ .Theme }} مصمم من {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "موافقة ملفات تعريف الارتباط"
|
||||
text = "نستخدم ملفات تعريف الارتباط لتحسين تجربة التصفح وتحليل حركة المرور على الموقع."
|
||||
acceptAll = "قبول الكل"
|
||||
deny = "رفض"
|
||||
managePreferences = "إدارة التفضيلات"
|
||||
settingsTitle = "تفضيلات ملفات تعريف الارتباط"
|
||||
savePreferences = "حفظ التفضيلات"
|
||||
cancel = "إلغاء"
|
||||
footerLink = "إعدادات ملفات تعريف الارتباط"
|
||||
commentsDisabled = "التعليقات معطلة حتى تقبل ملفات تعريف الارتباط الوظيفية."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "ضروري"
|
||||
text = "ملفات تعريف الارتباط هذه مطلوبة لعمل الموقع ولا يمكن تعطيلها."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "التحليلات"
|
||||
text = "تساعدنا ملفات تعريف الارتباط هذه على فهم كيفية تفاعل الزوار مع موقعنا."
|
||||
|
||||
[cookies.functional]
|
||||
title = "وظيفي"
|
||||
text = "تتيح ملفات تعريف الارتباط هذه ميزات مثل التعليقات والمحتوى المضمن."
|
||||
|
||||
@@ -50,3 +50,27 @@ darkMode = "Цёмны рэжым"
|
||||
[footer]
|
||||
builtWith = "Створана пры дапамозе {{ .Generator }}"
|
||||
designedBy = "Тэма {{ .Theme }}, дызайн {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Згода на файлы cookie"
|
||||
text = "Мы выкарыстоўваем файлы cookie для паляпшэння вашага досведу і аналізу трафіку сайта."
|
||||
acceptAll = "Прыняць усё"
|
||||
deny = "Адхіліць"
|
||||
managePreferences = "Кіраваць налады"
|
||||
settingsTitle = "Налады файлаў cookie"
|
||||
savePreferences = "Захаваць налады"
|
||||
cancel = "Скасаваць"
|
||||
footerLink = "Налады файлаў cookie"
|
||||
commentsDisabled = "Каментары адключаны, пакуль вы не прымеце функцыянальныя файлы cookie."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Неабходныя"
|
||||
text = "Гэтыя файлы cookie неабходныя для працы сайта і не могуць быць адключаны."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Аналітыка"
|
||||
text = "Гэтыя файлы cookie дапамагаюць нам зразумець, як наведвальнікі ўзаемадзейнічаюць з нашым сайтам."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Функцыянальныя"
|
||||
text = "Гэтыя файлы cookie ўключаюць такія функцыі, як каментары і ўбудаваны кантэнт."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Тъмен Режим"
|
||||
[footer]
|
||||
builtWith = "Създадено с {{ .Generator }}"
|
||||
designedBy = "Тема {{ .Theme }} създадена от {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Съгласие за бисквитки"
|
||||
text = "Използваме бисквитки, за да подобрим вашето изживяване и да анализираме трафика на сайта."
|
||||
acceptAll = "Приемане на всички"
|
||||
deny = "Откажи"
|
||||
managePreferences = "Управление на предпочитанията"
|
||||
settingsTitle = "Предпочитания за бисквитки"
|
||||
savePreferences = "Запазване на предпочитанията"
|
||||
cancel = "Отказ"
|
||||
footerLink = "Настройки на бисквитките"
|
||||
commentsDisabled = "Коментарите са деактивирани, докато не приемете функционални бисквитки."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Необходими"
|
||||
text = "Тези бисквитки са необходими за функционирането на уебсайта и не могат да бъдат деактивирани."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Анализи"
|
||||
text = "Тези бисквитки ни помагат да разберем как посетителите взаимодействат с нашия уебсайт."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Функционални"
|
||||
text = "Тези бисквитки активират функции като коментари и вградено съдържание."
|
||||
|
||||
+29
-5
@@ -15,12 +15,12 @@ darkMode = "ডার্ক মোড"
|
||||
[article]
|
||||
back = "পেছনে"
|
||||
tableOfContents = "সূচিপত্র"
|
||||
relatedContent = "সম্পর্কিত বিষয়বস্তু"
|
||||
relatedContent = "সম্পর্কিত বিষয়বস্তু"
|
||||
lastUpdatedOn = "সর্বশেষ আপডেট করা হয়েছে"
|
||||
|
||||
[article.readingTime]
|
||||
one = "{{ .Count }} মিনিটে পড়া যাবে"
|
||||
other = "{{ .Count }} মিনিটে পড়া যাবে"
|
||||
one = "{{ .Count }} মিনিটে পড়া যাবে"
|
||||
other = "{{ .Count }} মিনিটে পড়া যাবে"
|
||||
|
||||
[article.alert]
|
||||
note = "টীকা"
|
||||
@@ -30,7 +30,7 @@ darkMode = "ডার্ক মোড"
|
||||
caution = "সাবধানতা"
|
||||
|
||||
[notFound]
|
||||
title = "পাওয়া যায়নি"
|
||||
title = "পাওয়া যায়নি"
|
||||
subtitle = "এই পাতাটি বিদ্যমান নেই"
|
||||
|
||||
[widget]
|
||||
@@ -50,5 +50,29 @@ darkMode = "ডার্ক মোড"
|
||||
resultTitle = "#PAGES_COUNT পাতা (#TIME_SECONDS সেকেন্ড)"
|
||||
|
||||
[footer]
|
||||
builtWith = "{{ .Generator }} দিয়ে নির্মিত"
|
||||
builtWith = "{{ .Generator }} দিয়ে নির্মিত"
|
||||
designedBy = "থিম {{ .Theme }} ডিজাইন করেছেন {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "কুকি সম্মতি"
|
||||
text = "আমরা আপনার ব্রাউজিং অভিজ্ঞতা উন্নত করতে এবং সাইট ট্রাফিক বিশ্লেষণ করতে কুকি ব্যবহার করি।"
|
||||
acceptAll = "সবগুলো গ্রহণ করুন"
|
||||
deny = "প্রত্যাখ্যান"
|
||||
managePreferences = "পছন্দসমূহ পরিচালনা করুন"
|
||||
settingsTitle = "কুকি পছন্দসমূহ"
|
||||
savePreferences = "পছন্দসমূহ সংরক্ষণ করুন"
|
||||
cancel = "বাতিল"
|
||||
footerLink = "কুকি সেটিংস"
|
||||
commentsDisabled = "আপনি কার্যকরী কুকি গ্রহণ না করা পর্যন্ত মন্তব্য অক্ষম করা আছে।"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "প্রয়োজনীয়"
|
||||
text = "এই কুকিগুলি ওয়েবসাইট কাজ করার জন্য প্রয়োজনীয় এবং নিষ্ক্রিয় করা যায় না।"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "বিশ্লেষণ"
|
||||
text = "এই কুকিগুলি আমাদের বুঝতে সাহায্য করে যে দর্শকরা কীভাবে আমাদের ওয়েবসাইটের সাথে ইন্টারঅ্যাক্ট করে।"
|
||||
|
||||
[cookies.functional]
|
||||
title = "কার্যকরী"
|
||||
text = "এই কুকিগুলি মন্তব্য এবং এম্বেড করা বিষয়বস্তুর মতো বৈশিষ্ট্যগুলি সক্ষম করে."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Mode fosc"
|
||||
[footer]
|
||||
builtWith = "Creat amb {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} dissenyat per {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentiment de galetes"
|
||||
text = "Utilitzem galetes per millorar la vostra experiència de navegació i analitzar el trànsit del lloc."
|
||||
acceptAll = "Acceptar-ho tot"
|
||||
deny = "Denegar"
|
||||
managePreferences = "Gestionar preferències"
|
||||
settingsTitle = "Preferències de galetes"
|
||||
savePreferences = "Desar preferències"
|
||||
cancel = "Cancel·lar"
|
||||
footerLink = "Configuració de galetes"
|
||||
commentsDisabled = "Els comentaris estan desactivats fins que accepteu les galetes funcionals."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessàries"
|
||||
text = "Aquestes galetes són necessàries perquè el lloc web funcioni i no es poden desactivar."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analítiques"
|
||||
text = "Aquestes galetes ens ajuden a entendre com els visitants interactuen amb el nostre lloc web."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funcionals"
|
||||
text = "Aquestes galetes habiliten funcionalitats com comentaris i contingut incrustat."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Tmavý režim"
|
||||
[footer]
|
||||
builtWith = "Vytvořeno pomocí {{ .Generator }}"
|
||||
designedBy = "Šablona {{ .Theme }} od {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Souhlas s cookies"
|
||||
text = "Používáme cookies ke zlepšení vašeho prohlížení a analýze návštěvnosti webu."
|
||||
acceptAll = "Přijmout vše"
|
||||
deny = "Odmítnout"
|
||||
managePreferences = "Spravovat předvolby"
|
||||
settingsTitle = "Předvolby cookies"
|
||||
savePreferences = "Uložit předvolby"
|
||||
cancel = "Zrušit"
|
||||
footerLink = "Nastavení cookies"
|
||||
commentsDisabled = "Komentáře jsou zakázány, dokud nepřijmete funkční cookies."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Nutné"
|
||||
text = "Tyto cookies jsou nutné pro fungování webu a nelze je zakázat."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analytické"
|
||||
text = "Tyto cookies nám pomáhají pochopit, jak návštěvníci interagují s naším webem."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funkční"
|
||||
text = "Tyto cookies umožňují funkce jako komentáře a vložený obsah."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Dunkler Modus"
|
||||
[footer]
|
||||
builtWith = "Erstellt mit {{ .Generator }}"
|
||||
designedBy = "Theme {{ .Theme }} gestaltet von {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie-Einwilligung"
|
||||
text = "Wir verwenden Cookies, um Ihr Surferlebnis zu verbessern und den Website-Traffic zu analysieren."
|
||||
acceptAll = "Alle akzeptieren"
|
||||
deny = "Ablehnen"
|
||||
managePreferences = "Einstellungen verwalten"
|
||||
settingsTitle = "Cookie-Einstellungen"
|
||||
savePreferences = "Einstellungen speichern"
|
||||
cancel = "Abbrechen"
|
||||
footerLink = "Cookie-Einstellungen"
|
||||
commentsDisabled = "Kommentare sind deaktiviert, bis Sie funktionale Cookies akzeptieren."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Notwendig"
|
||||
text = "Diese Cookies sind für die Funktion der Website erforderlich und können nicht deaktiviert werden."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analyse"
|
||||
text = "Diese Cookies helfen uns zu verstehen, wie Besucher mit unserer Website interagieren."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funktional"
|
||||
text = "Diese Cookies ermöglichen Funktionen wie Kommentare und eingebettete Inhalte."
|
||||
|
||||
@@ -49,3 +49,27 @@ darkMode = "Σκοτεινό θέμα"
|
||||
[footer]
|
||||
builtWith = "Δημιουργήθηκε με τη χρήση {{ .Generator }}"
|
||||
designedBy = "Το θέμα {{ .Theme }} σχεδιάστηκε από το {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Συγκατάθεση για cookies"
|
||||
text = "Χρησιμοποιούμε cookies για να βελτιώσουμε την εμπειρία περιήγησής σας και να αναλύσουμε την επισκεψιμότητα του ιστότοπου."
|
||||
acceptAll = "Αποδοχή όλων"
|
||||
deny = "Άρνηση"
|
||||
managePreferences = "Διαχείριση προτιμήσεων"
|
||||
settingsTitle = "Προτιμήσεις cookies"
|
||||
savePreferences = "Αποθήκευση προτιμήσεων"
|
||||
cancel = "Ακύρωση"
|
||||
footerLink = "Ρυθμίσεις cookies"
|
||||
commentsDisabled = "Τα σχόλια είναι απενεργοποιημένα μέχρι να αποδεχτείτε τα λειτουργικά cookies."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Απαραίτητα"
|
||||
text = "Αυτά τα cookies είναι απαραίτητα για τη λειτουργία του ιστότοπου και δεν μπορούν να απενεργοποιηθούν."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Αναλυτικά"
|
||||
text = "Αυτά τα cookies μας βοηθούν να κατανοήσουμε πώς οι επισκέπτες αλληλεπιδρούν με τον ιστότοπό μας."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Λειτουργικά"
|
||||
text = "Αυτά τα cookies ενεργοποιούν λειτουργίες όπως σχόλια και ενσωματωμένο περιεχόμενο."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Dark Mode"
|
||||
[footer]
|
||||
builtWith = "Built with {{ .Generator }}"
|
||||
designedBy = "Theme {{ .Theme }} designed by {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie Consent"
|
||||
text = "We use cookies to enhance your browsing experience and analyze site traffic."
|
||||
acceptAll = "Accept All"
|
||||
deny = "Deny"
|
||||
managePreferences = "Manage preferences"
|
||||
settingsTitle = "Cookie Preferences"
|
||||
savePreferences = "Save preferences"
|
||||
cancel = "Cancel"
|
||||
footerLink = "Cookie settings"
|
||||
commentsDisabled = "Comments are disabled until you accept functional cookies."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessary"
|
||||
text = "These cookies are required for the website to function and cannot be disabled."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analytics"
|
||||
text = "These cookies help us understand how visitors interact with our website."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Functional"
|
||||
text = "These cookies enable features like comments and embedded content."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Modo oscuro"
|
||||
[footer]
|
||||
builtWith = "Creado con {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} diseñado por {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentimiento de cookies"
|
||||
text = "Utilizamos cookies para mejorar su experiencia de navegación y analizar el tráfico del sitio."
|
||||
acceptAll = "Aceptar todo"
|
||||
deny = "Rechazar"
|
||||
managePreferences = "Gestionar preferencias"
|
||||
settingsTitle = "Preferencias de cookies"
|
||||
savePreferences = "Guardar preferencias"
|
||||
cancel = "Cancelar"
|
||||
footerLink = "Configuración de cookies"
|
||||
commentsDisabled = "Los comentarios están desactivados hasta que acepte las cookies funcionales."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necesarias"
|
||||
text = "Estas cookies son necesarias para el funcionamiento del sitio web y no se pueden desactivar."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analíticas"
|
||||
text = "Estas cookies nos ayudan a entender cómo los visitantes interactúan con nuestro sitio web."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funcionales"
|
||||
text = "Estas cookies permiten funciones como comentarios y contenido incrustado."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "حالت شب"
|
||||
[footer]
|
||||
builtWith = "قدرت گرفته از {{ .Generator }}"
|
||||
designedBy = "قالب {{ .Theme }} ساخته شده توسط {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "رضایت کوکی"
|
||||
text = "ما از کوکیها برای بهبود تجربه مرورگری شما و تجزیه و تحلیل ترافیک سایت استفاده میکنیم."
|
||||
acceptAll = "پذیرش همه"
|
||||
deny = "رد کردن"
|
||||
managePreferences = "مدیریت تنظیمات"
|
||||
settingsTitle = "تنظیمات کوکی"
|
||||
savePreferences = "ذخیره تنظیمات"
|
||||
cancel = "لغو"
|
||||
footerLink = "تنظیمات کوکی"
|
||||
commentsDisabled = "نظرات تا زمانی که کوکیهای کاربردی را بپذیرید غیرفعال هستند."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "ضروری"
|
||||
text = "این کوکیها برای عملکرد وبسایت الزامی هستند و نمیتوان آنها را غیرفعال کرد."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "تجزیه و تحلیل"
|
||||
text = "این کوکیها به ما کمک میکنند تا بفهمیم بازدیدکنندگان چگونه با وبسایت ما تعامل دارند."
|
||||
|
||||
[cookies.functional]
|
||||
title = "کاربردی"
|
||||
text = "این کوکیها ویژگیهایی مانند نظرات و محتوای جاسازیشده را فعال میکنند."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Mode sombre"
|
||||
[footer]
|
||||
builtWith = "Généré avec {{ .Generator }}"
|
||||
designedBy = "Thème {{ .Theme }} conçu par {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentement aux cookies"
|
||||
text = "Nous utilisons des cookies pour améliorer votre expérience de navigation et analyser le trafic du site."
|
||||
acceptAll = "Tout accepter"
|
||||
deny = "Refuser"
|
||||
managePreferences = "Gérer les préférences"
|
||||
settingsTitle = "Préférences de cookies"
|
||||
savePreferences = "Enregistrer les préférences"
|
||||
cancel = "Annuler"
|
||||
footerLink = "Paramètres des cookies"
|
||||
commentsDisabled = "Les commentaires sont désactivés jusqu'à ce que vous acceptiez les cookies fonctionnels."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Nécessaires"
|
||||
text = "Ces cookies sont nécessaires au fonctionnement du site et ne peuvent pas être désactivés."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analytiques"
|
||||
text = "Ces cookies nous aident à comprendre comment les visiteurs interagissent avec notre site."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Fonctionnels"
|
||||
text = "Ces cookies permettent des fonctionnalités comme les commentaires et le contenu intégré."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "डार्क मोड"
|
||||
[footer]
|
||||
builtWith = "निर्मित {{ .Generator }} के साथ"
|
||||
designedBy = "थीम {{ .Theme }} द्वारा डिज़ाइन किया गया {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "कुकी सहमति"
|
||||
text = "हम आपके ब्राउज़िंग अनुभव को बेहतर बनाने और साइट ट्रैफ़िक का विश्लेषण करने के लिए कुकीज़ का उपयोग करते हैं।"
|
||||
acceptAll = "सभी स्वीकार करें"
|
||||
deny = "अस्वीकार करें"
|
||||
managePreferences = "वरीयताएँ प्रबंधित करें"
|
||||
settingsTitle = "कुकी वरीयताएँ"
|
||||
savePreferences = "वरीयताएँ सहेजें"
|
||||
cancel = "रद्द करें"
|
||||
footerLink = "कुकी सेटिंग्स"
|
||||
commentsDisabled = "जब तक आप कार्यात्मक कुकीज़ स्वीकार नहीं करते हैं, टिप्पणियाँ अक्षम हैं।"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "आवश्यक"
|
||||
text = "ये कुकीज़ वेबसाइट के कार्य के लिए आवश्यक हैं और इन्हें अक्षम नहीं किया जा सकता।"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "विश्लेषण"
|
||||
text = "ये कुकीज़ हमें यह समझने में मदद करती हैं कि विज़िटर हमारी वेबसाइट के साथ कैसे इंटरैक्ट करते हैं।"
|
||||
|
||||
[cookies.functional]
|
||||
title = "कार्यात्मक"
|
||||
text = "ये कुकीज़ टिप्पणियों और एम्बेडेड सामग्री जैसी सुविधाओं को सक्षम करती हैं."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Sötét Mód"
|
||||
[footer]
|
||||
builtWith = "{{ .Generator }} használatával készült"
|
||||
designedBy = "A {{ .Theme }} dizájnt {{ .DesignedBy }} tervezte"
|
||||
|
||||
[cookies]
|
||||
title = "Süti hozzájárulás"
|
||||
text = "Sütiket használunk a böngészési élmény javítása és a webhely forgalmának elemzése érdekében."
|
||||
acceptAll = "Összes elfogadása"
|
||||
deny = "Elutasítás"
|
||||
managePreferences = "Beállítások kezelése"
|
||||
settingsTitle = "Süti beállítások"
|
||||
savePreferences = "Beállítások mentése"
|
||||
cancel = "Mégse"
|
||||
footerLink = "Süti beállítások"
|
||||
commentsDisabled = "A hozzászólások le vannak tiltva, amíg nem fogadja el a funkcionális sütiket."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Szükséges"
|
||||
text = "Ezek a sütik szükségesek a webhely működéséhez és nem lehet őket letiltani."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analitikai"
|
||||
text = "Ezek a sütik segítenek megérteni, hogyan lépnek kapcsolatba a látogatók a weboldalunkkal."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funkcionális"
|
||||
text = "Ezek a sütik olyan funkciókat tesznek lehetővé, mint a hozzászólások és a beágyazott tartalom."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Mode Gelap"
|
||||
[footer]
|
||||
builtWith = "Dibangun dengan {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} dirancang oleh {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Persetujuan Cookie"
|
||||
text = "Kami menggunakan cookie untuk meningkatkan pengalaman browsing Anda dan menganalisis lalu lintas situs."
|
||||
acceptAll = "Terima Semua"
|
||||
deny = "Tolak"
|
||||
managePreferences = "Kelola preferensi"
|
||||
settingsTitle = "Preferensi Cookie"
|
||||
savePreferences = "Simpan preferensi"
|
||||
cancel = "Batal"
|
||||
footerLink = "Pengaturan cookie"
|
||||
commentsDisabled = "Komentar dinonaktifkan sampai Anda menerima cookie fungsional."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Diperlukan"
|
||||
text = "Cookie ini diperlukan agar situs web berfungsi dan tidak dapat dinonaktifkan."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analitik"
|
||||
text = "Cookie ini membantu kami memahami bagaimana pengunjung berinteraksi dengan situs web kami."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Fungsional"
|
||||
text = "Cookie ini mengaktifkan fitur seperti komentar dan konten yang disematkan."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Modalità scura"
|
||||
[footer]
|
||||
builtWith = "Realizzato con {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} realizzato da {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consenso ai cookie"
|
||||
text = "Utilizziamo i cookie per migliorare la tua esperienza di navigazione e analizzare il traffico del sito."
|
||||
acceptAll = "Accetta tutti"
|
||||
deny = "Rifiuta"
|
||||
managePreferences = "Gestisci preferenze"
|
||||
settingsTitle = "Preferenze cookie"
|
||||
savePreferences = "Salva preferenze"
|
||||
cancel = "Annulla"
|
||||
footerLink = "Impostazioni cookie"
|
||||
commentsDisabled = "I commenti sono disabilitati finché non accetti i cookie funzionali."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessari"
|
||||
text = "Questi cookie sono necessari per il funzionamento del sito web e non possono essere disattivati."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analitici"
|
||||
text = "Questi cookie ci aiutano a capire come i visitatori interagiscono con il nostro sito web."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funzionali"
|
||||
text = "Questi cookie abilitano funzionalità come commenti e contenuti incorporati."
|
||||
|
||||
@@ -43,3 +43,27 @@ darkMode = "ダークモード"
|
||||
[footer]
|
||||
builtWith = "{{ .Generator }} で構築されています。"
|
||||
designedBy = "テーマ {{ .Theme }} は {{ .DesignedBy }} によって設計されています。"
|
||||
|
||||
[cookies]
|
||||
title = "Cookieの同意"
|
||||
text = "ブラウジング体験を向上させ、サイトトラフィックを分析するためにCookieを使用しています。"
|
||||
acceptAll = "すべて受け入れる"
|
||||
deny = "拒否"
|
||||
managePreferences = "設定を管理"
|
||||
settingsTitle = "Cookie設定"
|
||||
savePreferences = "設定を保存"
|
||||
cancel = "キャンセル"
|
||||
footerLink = "Cookie設定"
|
||||
commentsDisabled = "機能的なCookieを受け入れるまで、コメントは無効になっています。"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "必須"
|
||||
text = "これらのCookieはウェブサイトの機能に必要であり、無効にすることはできません。"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "分析"
|
||||
text = "これらのCookieは、訪問者が当サイトとどのように対話するかを理解するのに役立ちます。"
|
||||
|
||||
[cookies.functional]
|
||||
title = "機能的"
|
||||
text = "これらのCookieは、コメントや埋め込みコンテンツなどの機能を有効にします."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "다크 모드"
|
||||
[footer]
|
||||
builtWith = "{{ .Generator }}로 만듦"
|
||||
designedBy = "{{ .DesignedBy }}의 {{ .Theme }} 테마 사용 중"
|
||||
|
||||
[cookies]
|
||||
title = "쿠키 동의"
|
||||
text = "브라우징 경험을 향상시키고 사이트 트래픽을 분석하기 위해 쿠키를 사용합니다."
|
||||
acceptAll = "모두 허용"
|
||||
deny = "거부"
|
||||
managePreferences = "설정 관리"
|
||||
settingsTitle = "쿠키 설정"
|
||||
savePreferences = "설정 저장"
|
||||
cancel = "취소"
|
||||
footerLink = "쿠키 설정"
|
||||
commentsDisabled = "기능적 쿠키를 수락할 때까지 댓글이 비활성화됩니다."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "필수"
|
||||
text = "이 쿠키는 웹사이트 기능에 필요하며 비활성화할 수 없습니다."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "분석"
|
||||
text = "이 쿠키는 방문자가 웹사이트와 상호작용하는 방식을 이해하는 데 도움이 됩니다."
|
||||
|
||||
[cookies.functional]
|
||||
title = "기능적"
|
||||
text = "이 쿠키는 댓글 및 임베디드 콘텐츠와 같은 기능을 활성화합니다."
|
||||
|
||||
@@ -47,3 +47,27 @@ darkMode = "Donkere modus"
|
||||
[footer]
|
||||
builtWith = "Gemaakt met {{ .Generator }}"
|
||||
designedBy = "Theme {{ .Theme }} ontworpen door {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie-toestemming"
|
||||
text = "We gebruiken cookies om uw browse-ervaring te verbeteren en siteverkeer te analyseren."
|
||||
acceptAll = "Accepteer alles"
|
||||
deny = "Weigeren"
|
||||
managePreferences = "Voorkeuren beheren"
|
||||
settingsTitle = "Cookie-voorkeuren"
|
||||
savePreferences = "Voorkeuren opslaan"
|
||||
cancel = "Annuleren"
|
||||
footerLink = "Cookie-instellingen"
|
||||
commentsDisabled = "Reacties zijn uitgeschakeld totdat u functionele cookies accepteert."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Noodzakelijk"
|
||||
text = "Deze cookies zijn vereist voor de werking van de website en kunnen niet worden uitgeschakeld."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analyse"
|
||||
text = "Deze cookies helpen ons begrijpen hoe bezoekers omgaan met onze website."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Functioneel"
|
||||
text = "Deze cookies maken functies mogelijk zoals reacties en ingesloten inhoud."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Mòde fosc"
|
||||
[footer]
|
||||
builtWith = "Creat amb {{ .Generator }}"
|
||||
designedBy = "Tàma {{ .Theme }} concebut per {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentiment de cookies"
|
||||
text = "Utilizem cookies per melhorar vòstra experiéncia de navegacion e analisar lo trafic del site."
|
||||
acceptAll = "Acceptar tot"
|
||||
deny = "Refusar"
|
||||
managePreferences = "Gerir las preferéncias"
|
||||
settingsTitle = "Preferéncias de cookies"
|
||||
savePreferences = "Enregistrar las preferéncias"
|
||||
cancel = "Anullar"
|
||||
footerLink = "Paramètres de cookies"
|
||||
commentsDisabled = "Los comentaris son desactivats fins qu'acceptatz las cookies foncionalas."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessaris"
|
||||
text = "Aquestes cookies son necessàrias pel foncionament del site web e se pòdon pas desactivar."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analiticas"
|
||||
text = "Aquestes cookies nos ajudan a comprendre cossí los visitaires interagisson amb nòstre site web."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Foncionalas"
|
||||
text = "Aquestes cookies activan de foncionalitats coma los comentaris e lo contengut incorporat."
|
||||
|
||||
@@ -63,3 +63,27 @@ darkMode = "Tryb ciemny"
|
||||
[footer]
|
||||
builtWith = "Zbudowano z {{ .Generator }}"
|
||||
designedBy = "Motyw {{ .Theme }} zaprojektowany przez {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Zgoda na pliki cookie"
|
||||
text = "Używamy plików cookie, aby poprawić Twoje wrażenia z przeglądania i analizować ruch w witrynie."
|
||||
acceptAll = "Akceptuj wszystkie"
|
||||
deny = "Odrzuć"
|
||||
managePreferences = "Zarządzaj preferencjami"
|
||||
settingsTitle = "Preferencje plików cookie"
|
||||
savePreferences = "Zapisz preferencje"
|
||||
cancel = "Anuluj"
|
||||
footerLink = "Ustawienia plików cookie"
|
||||
commentsDisabled = "Komentarze są wyłączone, dopóki nie zaakceptujesz funkcjonalnych plików cookie."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Niezbędne"
|
||||
text = "Te pliki cookie są wymagane do działania witryny i nie można ich wyłączyć."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analityczne"
|
||||
text = "Te pliki cookie pomagają nam zrozumieć, jak odwiedzający wchodzą w interakcję z naszą witryną."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funkcjonalne"
|
||||
text = "Te pliki cookie włączają funkcje takie jak komentarze i osadzone treści."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Modo Escuro"
|
||||
[footer]
|
||||
builtWith = "Criado com {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentimento de cookies"
|
||||
text = "Usamos cookies para melhorar sua experiência de navegação e analisar o tráfego do site."
|
||||
acceptAll = "Aceitar todos"
|
||||
deny = "Recusar"
|
||||
managePreferences = "Gerenciar preferências"
|
||||
settingsTitle = "Preferências de cookies"
|
||||
savePreferences = "Salvar preferências"
|
||||
cancel = "Cancelar"
|
||||
footerLink = "Configurações de cookies"
|
||||
commentsDisabled = "Os comentários estão desativados até que você aceite os cookies funcionais."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessários"
|
||||
text = "Estes cookies são necessários para o funcionamento do site e não podem ser desativados."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analíticos"
|
||||
text = "Estes cookies nos ajudam a entender como os visitantes interagem com nosso site."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funcionais"
|
||||
text = "Estes cookies habilitam recursos como comentários e conteúdo incorporado."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Modo Escuro"
|
||||
[footer]
|
||||
builtWith = "Criado com {{ .Generator }}"
|
||||
designedBy = "Tema {{ .Theme }} desenvolvido por {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Consentimento de cookies"
|
||||
text = "Utilizamos cookies para melhorar a sua experiência de navegação e analisar o tráfego do site."
|
||||
acceptAll = "Aceitar todos"
|
||||
deny = "Recusar"
|
||||
managePreferences = "Gerir preferências"
|
||||
settingsTitle = "Preferências de cookies"
|
||||
savePreferences = "Guardar preferências"
|
||||
cancel = "Cancelar"
|
||||
footerLink = "Definições de cookies"
|
||||
commentsDisabled = "Os comentários estão desativados até que aceite os cookies funcionais."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Necessários"
|
||||
text = "Estes cookies são necessários para o funcionamento do website e não podem ser desativados."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analíticos"
|
||||
text = "Estes cookies ajudam-nos a compreender como os visitantes interagem com o nosso website."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funcionais"
|
||||
text = "Estes cookies permitem funcionalidades como comentários e conteúdo incorporado."
|
||||
|
||||
@@ -53,3 +53,27 @@ darkMode = "Тёмный режим"
|
||||
[footer]
|
||||
builtWith = "Создано при помощи {{ .Generator }}"
|
||||
designedBy = "Тема {{ .Theme }}, дизайн {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Согласие на использование файлов cookie"
|
||||
text = "Мы используем файлы cookie для улучшения вашего опыта просмотра и анализа трафика сайта."
|
||||
acceptAll = "Принять все"
|
||||
deny = "Отклонить"
|
||||
managePreferences = "Управление настройками"
|
||||
settingsTitle = "Настройки файлов cookie"
|
||||
savePreferences = "Сохранить настройки"
|
||||
cancel = "Отмена"
|
||||
footerLink = "Настройки файлов cookie"
|
||||
commentsDisabled = "Комментарии отключены, пока вы не примете функциональные файлы cookie."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Необходимые"
|
||||
text = "Эти файлы cookie необходимы для работы сайта и не могут быть отключены."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Аналитика"
|
||||
text = "Эти файлы cookie помогают нам понять, как посетители взаимодействуют с нашим сайтом."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Функциональные"
|
||||
text = "Эти файлы cookie включают такие функции, как комментарии и встроенный контент."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Tmavý režim"
|
||||
[footer]
|
||||
builtWith = "Vytvorené pomocou {{ .Generator }}"
|
||||
designedBy = "Šablóna {{ .Theme }} od {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Súhlas s cookies"
|
||||
text = "Používame cookies na zlepšenie vášho prehliadania a analýzu návštevnosti webu."
|
||||
acceptAll = "Prijať všetko"
|
||||
deny = "Odmietnuť"
|
||||
managePreferences = "Spravovať predvoľby"
|
||||
settingsTitle = "Predvoľby cookies"
|
||||
savePreferences = "Uložiť predvoľby"
|
||||
cancel = "Zrušiť"
|
||||
footerLink = "Nastavenia cookies"
|
||||
commentsDisabled = "Komentáre sú zakázané, kým neprijmete funkčné cookies."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Nutné"
|
||||
text = "Tieto cookies sú nutné pre fungovanie webu a nemožno ich zakázať."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analytické"
|
||||
text = "Tieto cookies nám pomáhajú pochopiť, ako návštevníci interagujú s naším webom."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Funkčné"
|
||||
text = "Tieto cookies umožňujú funkcie ako komentáre a vložený obsah."
|
||||
|
||||
@@ -49,3 +49,27 @@ darkMode = "ธีมมืด"
|
||||
[footer]
|
||||
builtWith = "ถูกสร้างด้วย {{ .Generator }}"
|
||||
designedBy = "ธีม {{ .Theme }} ออกแบบโดย {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "ความยินยอมคุกกี้"
|
||||
text = "เราใช้คุกกี้เพื่อปรับปรุงประสบการณ์การเรียกดูของคุณและวิเคราะห์การเข้าชมเว็บไซต์"
|
||||
acceptAll = "ยอมรับทั้งหมด"
|
||||
deny = "ปฏิเสธ"
|
||||
managePreferences = "จัดการการตั้งค่า"
|
||||
settingsTitle = "การตั้งค่าคุกกี้"
|
||||
savePreferences = "บันทึกการตั้งค่า"
|
||||
cancel = "ยกเลิก"
|
||||
footerLink = "การตั้งค่าคุกกี้"
|
||||
commentsDisabled = "ความคิดเห็นถูกปิดการใช้งานจนกว่าคุณจะยอมรับคุกกี้เชิงหน้าที่"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "จำเป็น"
|
||||
text = "คุกกี้เหล่านี้จำเป็นสำหรับการทำงานของเว็บไซต์และไม่สามารถปิดการใช้งานได้"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "การวิเคราะห์"
|
||||
text = "คุกกี้เหล่านี้ช่วยให้เราเข้าใจว่าผู้เยี่ยมชมโต้ตอบกับเว็บไซต์ของเราอย่างไร"
|
||||
|
||||
[cookies.functional]
|
||||
title = "เชิงหน้าที่"
|
||||
text = "คุกกี้เหล่านี้เปิดใช้งานคุณสมบัติต่างๆ เช่น ความคิดเห็นและเนื้อหาที่ฝังไว้"
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Koyu Mod"
|
||||
[footer]
|
||||
builtWith = "{{ .Generator }} ile oluşturuldu."
|
||||
designedBy = "{{ .Theme }} teması {{ .DesignedBy }} tarafından tasarlandı"
|
||||
|
||||
[cookies]
|
||||
title = "Çerez Onayı"
|
||||
text = "Tarayıcı deneyiminizi iyileştirmek ve site trafiğini analiz etmek için çerezler kullanıyoruz."
|
||||
acceptAll = "Tümünü Kabul Et"
|
||||
deny = "Reddet"
|
||||
managePreferences = "Tercihleri yönet"
|
||||
settingsTitle = "Çerez Tercihleri"
|
||||
savePreferences = "Tercihleri kaydet"
|
||||
cancel = "İptal"
|
||||
footerLink = "Çerez ayarları"
|
||||
commentsDisabled = "İşlevsel çerezleri kabul edene kadar yorumlar devre dışıdır."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Gerekli"
|
||||
text = "Bu çerezler web sitesinin çalışması için gereklidir ve devre dışı bırakılamaz."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Analitik"
|
||||
text = "Bu çerezler, ziyaretçilerin web sitemizle nasıl etkileşimde bulunduğunu anlamamıza yardımcı olur."
|
||||
|
||||
[cookies.functional]
|
||||
title = "İşlevsel"
|
||||
text = "Bu çerezler, yorumlar ve gömülü içerik gibi özellikleri etkinleştirir."
|
||||
|
||||
@@ -53,3 +53,27 @@ darkMode = "Темна тема"
|
||||
[footer]
|
||||
builtWith = "Створено з {{ .Generator }}"
|
||||
designedBy = "Тема {{ .Theme }}, дизайн {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Згода на використання файлів cookie"
|
||||
text = "Ми використовуємо файли cookie для покращення вашого досвіду перегляду та аналізу трафіку сайту."
|
||||
acceptAll = "Прийняти все"
|
||||
deny = "Відхилити"
|
||||
managePreferences = "Керувати налаштуваннями"
|
||||
settingsTitle = "Налаштування файлів cookie"
|
||||
savePreferences = "Зберегти налаштування"
|
||||
cancel = "Скасувати"
|
||||
footerLink = "Налаштування файлів cookie"
|
||||
commentsDisabled = "Коментарі вимкнено, доки ви не приймете функціональні файли cookie."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Необхідні"
|
||||
text = "Ці файли cookie необхідні для роботи сайту і не можуть бути вимкнені."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Аналітика"
|
||||
text = "Ці файли cookie допомагають нам зрозуміти, як відвідувачі взаємодіють з нашим сайтом."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Функціональні"
|
||||
text = "Ці файли cookie вмикають такі функції, як коментарі та вбудований контент."
|
||||
|
||||
@@ -52,3 +52,27 @@ darkMode = "Chế độ nền tối"
|
||||
[footer]
|
||||
builtWith = "Built with {{ .Generator }}"
|
||||
designedBy = "Theme {{ .Theme }} thiết kế bởi {{ .DesignedBy }}"
|
||||
|
||||
[cookies]
|
||||
title = "Đồng ý cookie"
|
||||
text = "Chúng tôi sử dụng cookie để nâng cao trải nghiệm duyệt web của bạn và phân tích lưu lượng truy cập trang web."
|
||||
acceptAll = "Chấp nhận tất cả"
|
||||
deny = "Từ chối"
|
||||
managePreferences = "Quản lý tùy chọn"
|
||||
settingsTitle = "Tùy chọn cookie"
|
||||
savePreferences = "Lưu tùy chọn"
|
||||
cancel = "Hủy"
|
||||
footerLink = "Cài đặt cookie"
|
||||
commentsDisabled = "Bình luận bị vô hiệu hóa cho đến khi bạn chấp nhận cookie chức năng."
|
||||
|
||||
[cookies.necessary]
|
||||
title = "Cần thiết"
|
||||
text = "Những cookie này là cần thiết để trang web hoạt động và không thể vô hiệu hóa."
|
||||
|
||||
[cookies.analytics]
|
||||
title = "Phân tích"
|
||||
text = "Những cookie này giúp chúng tôi hiểu cách khách truy cập tương tác với trang web của chúng tôi."
|
||||
|
||||
[cookies.functional]
|
||||
title = "Chức năng"
|
||||
text = "Những cookie này cho phép các tính năng như bình luận và nội dung nhúng."
|
||||
|
||||
@@ -43,3 +43,27 @@ darkMode = "深色模式"
|
||||
[footer]
|
||||
builtWith = "使用 {{ .Generator }} 建立"
|
||||
designedBy = "主題 {{ .Theme }} 由 {{ .DesignedBy }} 設計"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie 同意"
|
||||
text = "我們使用 Cookie 來增強您的瀏覽體驗並分析網站流量。"
|
||||
acceptAll = "接受全部"
|
||||
deny = "拒絕"
|
||||
managePreferences = "管理偏好設定"
|
||||
settingsTitle = "Cookie 偏好設定"
|
||||
savePreferences = "儲存偏好設定"
|
||||
cancel = "取消"
|
||||
footerLink = "Cookie 設定"
|
||||
commentsDisabled = "評論已停用,直到您接受功能性 Cookie。"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "必要"
|
||||
text = "這些 Cookie 是網站運作所必需的,無法停用。"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "分析"
|
||||
text = "這些 Cookie 幫助我們了解訪客如何與我們的網站互動。"
|
||||
|
||||
[cookies.functional]
|
||||
title = "功能性"
|
||||
text = "這些 Cookie 啟用評論和嵌入內容等功能."
|
||||
|
||||
@@ -43,3 +43,27 @@ darkMode = "夜晚模式"
|
||||
[footer]
|
||||
builtWith = "使用 {{ .Generator }} 建立"
|
||||
designedBy = "主題 {{ .Theme }} 由 {{ .DesignedBy }} 設計"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie 同意"
|
||||
text = "我們使用 Cookie 來增強您的瀏覽體驗並分析網站流量。"
|
||||
acceptAll = "接受全部"
|
||||
deny = "拒絕"
|
||||
managePreferences = "管理偏好設定"
|
||||
settingsTitle = "Cookie 偏好設定"
|
||||
savePreferences = "儲存偏好設定"
|
||||
cancel = "取消"
|
||||
footerLink = "Cookie 設定"
|
||||
commentsDisabled = "評論已停用,直到您接受功能性 Cookie。"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "必要"
|
||||
text = "這些 Cookie 是網站運作所必需的,無法停用。"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "分析"
|
||||
text = "這些 Cookie 幫助我們了解訪客如何與我們的網站互動。"
|
||||
|
||||
[cookies.functional]
|
||||
title = "功能性"
|
||||
text = "這些 Cookie 啟用評論和嵌入內容等功能."
|
||||
|
||||
@@ -43,3 +43,27 @@ darkMode = "暗色模式"
|
||||
[footer]
|
||||
builtWith = "使用 {{ .Generator }} 构建"
|
||||
designedBy = "主题 {{ .Theme }} 由 {{ .DesignedBy }} 设计"
|
||||
|
||||
[cookies]
|
||||
title = "Cookie 同意"
|
||||
text = "我们使用 Cookie 来增强您的浏览体验并分析网站流量。"
|
||||
acceptAll = "接受所有"
|
||||
deny = "拒绝"
|
||||
managePreferences = "管理偏好设置"
|
||||
settingsTitle = "Cookie 偏好设置"
|
||||
savePreferences = "保存偏好设置"
|
||||
cancel = "取消"
|
||||
footerLink = "Cookie 设置"
|
||||
commentsDisabled = "评论已禁用,直到您接受功能性 Cookie。"
|
||||
|
||||
[cookies.necessary]
|
||||
title = "必要"
|
||||
text = "这些 Cookie 是网站运行所必需的,无法禁用。"
|
||||
|
||||
[cookies.analytics]
|
||||
title = "分析"
|
||||
text = "这些 Cookie 帮助我们了解访问者如何与我们的网站互动。"
|
||||
|
||||
[cookies.functional]
|
||||
title = "功能性"
|
||||
text = "这些 Cookie 启用评论和嵌入内容等功能."
|
||||
|
||||
@@ -2,23 +2,29 @@
|
||||
{{- $alt := .PlainText | safeHTML -}}
|
||||
{{- $title := .Title | markdownify -}}
|
||||
|
||||
{{/* SVG and external images won't work with gallery layout, because their width and height attributes are unknown */}}
|
||||
{{/* There are some types of images that don't have width and height attributes, such as SVG */}}
|
||||
{{- $galleryImage := and $image.Height $image.Width -}}
|
||||
|
||||
<img src="{{ $image.Permalink }}"
|
||||
{{ with $image.Width }}width="{{ . }}"{{ end }}
|
||||
{{ with $image.Height }}height="{{ . }}"{{ end }}
|
||||
loading="lazy"
|
||||
{{ with $alt }}
|
||||
alt="{{ . }}"
|
||||
{{ end }}
|
||||
{{ with $title }}
|
||||
title="{{ . }}"
|
||||
data-title-escaped="{{ . | htmlEscape }}"
|
||||
{{ end }}
|
||||
{{ if $galleryImage }}
|
||||
class="gallery-image"
|
||||
data-flex-grow="{{ div (mul $image.Width 100) $image.Height }}"
|
||||
data-flex-basis="{{ div (mul $image.Width 240) $image.Height }}px"
|
||||
{{ end }}
|
||||
>
|
||||
{{- $attributes := dict -}}
|
||||
{{- if $galleryImage -}}
|
||||
{{- $attributes = (dict
|
||||
"data-flex-grow" (div (mul $image.Width 100) $image.Height)
|
||||
"data-flex-basis" (printf "%dpx" (div (mul $image.Width 240) $image.Height))
|
||||
) -}}
|
||||
{{- end -}}
|
||||
|
||||
{{ partial "helper/responsive-image" (dict
|
||||
"Resource" $image.Resource
|
||||
"Widths" (cond .Page.Site.Params.ImageProcessing.Content.Enabled .Page.Site.Params.ImageProcessing.Content.Widths nil)
|
||||
"Attributes" (merge $attributes (dict
|
||||
"src" $image.Permalink
|
||||
"width" $image.Width
|
||||
"height" $image.Height
|
||||
"alt" $alt
|
||||
"title" $title
|
||||
"data-title-escaped" ($title | htmlEscape)
|
||||
"class" (cond $galleryImage "gallery-image" "")
|
||||
"loading" "lazy"
|
||||
"sizes" "(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px"
|
||||
))
|
||||
) }}
|
||||
@@ -14,8 +14,19 @@
|
||||
{{- $image := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources) -}}
|
||||
{{ if $image }}
|
||||
<div class="article-image">
|
||||
<img src="{{ $image.Permalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt="{{ .Title }}"
|
||||
loading="lazy">
|
||||
{{ partial "helper/thumbnail-image" (dict
|
||||
"Resource" $image.Resource
|
||||
"Width" 60
|
||||
"Height" 60
|
||||
"Resize" .Site.Params.ImageProcessing.Thumbnail.Enabled
|
||||
"Attributes" (dict
|
||||
"src" $image.Permalink
|
||||
"alt" .Title
|
||||
"loading" "lazy"
|
||||
"width" $image.Width
|
||||
"height" $image.Height
|
||||
)
|
||||
) }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</a>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{{ $image := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources) }}
|
||||
<article class="{{ if $image }}has-image{{ end }}">
|
||||
{{ partial "article/components/header" . }}
|
||||
{{ partial "article/components/header" (dict "Page" . "IsList" true) }}
|
||||
</article>
|
||||
@@ -3,13 +3,24 @@
|
||||
<a href="{{ .context.RelPermalink }}">
|
||||
{{ if $image }}
|
||||
<div class="article-image">
|
||||
<img src="{{ $image.Permalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" loading="lazy"
|
||||
alt="Featured image of post {{ .context.Title }}">
|
||||
{{ partial "helper/thumbnail-image" (dict
|
||||
"Resource" $image.Resource
|
||||
"Width" 250
|
||||
"Height" 150
|
||||
"Resize" .context.Site.Params.ImageProcessing.Thumbnail.Enabled
|
||||
"Attributes" (dict
|
||||
"src" $image.Permalink
|
||||
"alt" (printf "Featured image of post %s" .context.Title)
|
||||
"loading" "lazy"
|
||||
"width" $image.Width
|
||||
"height" $image.Height
|
||||
)
|
||||
) }}
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
<div class="article-details"
|
||||
{{- if and $image $image.Resource -}}
|
||||
{{- if and $image (reflect.IsImageResourceProcessable $image.Resource) -}}
|
||||
{{- $colors := $image.Resource.Colors -}}
|
||||
{{- if $colors -}}
|
||||
{{- $vibrant := index $colors 0 -}}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<article class="{{ if .Params.image }}has-image {{ end }}main-article">
|
||||
{{ partial "article/components/header" . }}
|
||||
{{ partial "article/components/header" (dict "Page" . "IsList" false) }}
|
||||
|
||||
{{ if .Scratch.Get "TOCEnabled" }}
|
||||
<aside class="article-toc">
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
{{- $IsList := .IsList -}}
|
||||
{{- $Page := .Page -}}
|
||||
<div class="article-details">
|
||||
{{ if .Params.categories }}
|
||||
{{ if $Page.Params.categories }}
|
||||
<header class="article-category">
|
||||
{{ range (.GetTerms "categories") }}
|
||||
{{ range ($Page.GetTerms "categories") }}
|
||||
{{ $color := partial "helper/color-from-str" .LinkTitle }}
|
||||
{{ $BackgroundColor := default $color.BackgroundColor .Params.style.background }}
|
||||
{{ $TextColor := default $color.TextColor .Params.style.color }}
|
||||
@@ -14,28 +16,28 @@
|
||||
|
||||
<div class="article-title-wrapper">
|
||||
<h2 class="article-title">
|
||||
<a href="{{ .RelPermalink }}">
|
||||
{{- .Title -}}
|
||||
<a href="{{ $Page.RelPermalink }}">
|
||||
{{- $Page.Title -}}
|
||||
</a>
|
||||
</h2>
|
||||
|
||||
{{ with .Params.description }}
|
||||
{{ with $Page.Params.description }}
|
||||
<h3 class="article-subtitle">
|
||||
{{ . }}
|
||||
</h3>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
{{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }}
|
||||
{{ $showDate := not .Date.IsZero }}
|
||||
{{ $showReadingTime := $Page.Params.readingTime | default ($Page.Site.Params.article.readingTime) }}
|
||||
{{ $showDate := not $Page.Date.IsZero }}
|
||||
{{ $showFooter := or $showDate $showReadingTime }}
|
||||
{{ if $showFooter }}
|
||||
<footer class="article-time">
|
||||
{{ if $showDate }}
|
||||
<div>
|
||||
{{ partial "helper/icon" "date" }}
|
||||
<time class="article-time--published" datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
||||
{{- .Date | time.Format .Site.Params.dateFormat.published -}}
|
||||
<time class="article-time--published" datetime='{{ $Page.Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
||||
{{- $Page.Date | time.Format $Page.Site.Params.dateFormat.published -}}
|
||||
</time>
|
||||
</div>
|
||||
{{ end }}
|
||||
@@ -44,21 +46,32 @@
|
||||
<div>
|
||||
{{ partial "helper/icon" "clock" }}
|
||||
<time class="article-time--reading">
|
||||
{{ T "article.readingTime" .ReadingTime }}
|
||||
{{ T "article.readingTime" $Page.ReadingTime }}
|
||||
</time>
|
||||
</div>
|
||||
{{ end }}
|
||||
</footer>
|
||||
{{ end }}
|
||||
|
||||
{{ if .IsTranslated }}
|
||||
{{ if $Page.IsTranslated }}
|
||||
<footer class="article-translations">
|
||||
{{ partial "helper/icon" "language" }}
|
||||
<div>
|
||||
{{ range .Translations }}
|
||||
{{ range $Page.Translations }}
|
||||
<a href="{{ .RelPermalink }}" class="link">{{ .Language.LanguageName }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</footer>
|
||||
{{ end }}
|
||||
|
||||
{{ if and $Page.Site.Params.Article.List.ShowTags ($Page.GetTerms "tags") $IsList }}
|
||||
<footer class="article-header-tags">
|
||||
{{ partial "helper/icon" "tag" }}
|
||||
<div>
|
||||
{{ range ($Page.GetTerms "tags") }}
|
||||
<a href="{{ .RelPermalink }}" class="link">{{ .LinkTitle }}</a>
|
||||
{{ end }}
|
||||
</div>
|
||||
</footer>
|
||||
{{ end }}
|
||||
</div>
|
||||
|
||||
@@ -1,13 +1,25 @@
|
||||
{{- $IsList := .IsList -}}
|
||||
{{- $Page := .Page -}}
|
||||
<header class="article-header">
|
||||
{{- $image := partial "helper/image" (dict "Image" .Params.image "Resources" .Resources) -}}
|
||||
{{- $image := partial "helper/image" (dict "Image" $Page.Params.image "Resources" $Page.Resources) -}}
|
||||
{{ if $image }}
|
||||
<div class="article-image">
|
||||
<a href="{{ .RelPermalink }}">
|
||||
<img src="{{ $image.Permalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" loading="lazy"
|
||||
alt="Featured image of post {{ .Title }}" />
|
||||
<a href="{{ $Page.RelPermalink }}">
|
||||
{{ partial "helper/responsive-image" (dict
|
||||
"Resource" $image.Resource
|
||||
"Widths" (cond $Page.Site.Params.ImageProcessing.Content.Enabled $Page.Site.Params.ImageProcessing.Content.Widths nil)
|
||||
"Attributes" (dict
|
||||
"src" $image.Permalink
|
||||
"width" $image.Width
|
||||
"height" $image.Height
|
||||
"alt" (printf "Featured image of post %s" $Page.Title)
|
||||
"loading" "lazy"
|
||||
"sizes" "(max-width: 767px) calc(100vw - 30px), (max-width: 1023px) 700px, (max-width: 1279px) 950px, 1232px"
|
||||
)
|
||||
) }}
|
||||
</a>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
{{ partialCached "article/components/details" . .RelPermalink }}
|
||||
{{ partial "article/components/details" (dict "Page" $Page "IsList" $IsList) }}
|
||||
</header>
|
||||
@@ -1,3 +1,47 @@
|
||||
{{ if .Site.Params.comments.enabled }}
|
||||
{{ partial (printf "comments/provider/%s" .Site.Params.comments.provider) . }}
|
||||
{{- $needsConsent := and .Site.Params.cookies.enabled .Site.Params.cookies.categories.functional -}}
|
||||
{{- if $needsConsent -}}
|
||||
{{/* Consent-gated comments - show placeholder until functional consent */}}
|
||||
<div id="comments-consent-placeholder" class="consent-placeholder">
|
||||
<p>{{ T "cookies.commentsDisabled" }}</p>
|
||||
<button class="cookie-btn cookie-btn--primary" data-cookie-action="reopen">
|
||||
{{ T "cookies.managePreferences" }}
|
||||
</button>
|
||||
</div>
|
||||
<div id="comments-container" style="display: none;">
|
||||
{{ partial (printf "comments/provider/%s" .Site.Params.comments.provider) . }}
|
||||
</div>
|
||||
<script>
|
||||
(function() {
|
||||
var placeholder = document.getElementById('comments-consent-placeholder');
|
||||
var container = document.getElementById('comments-container');
|
||||
|
||||
function showComments() {
|
||||
if (placeholder) placeholder.style.display = 'none';
|
||||
if (container) container.style.display = 'block';
|
||||
}
|
||||
|
||||
function hideComments() {
|
||||
if (placeholder) placeholder.style.display = 'block';
|
||||
if (container) container.style.display = 'none';
|
||||
}
|
||||
|
||||
window.addEventListener('onCookieConsentChange', function(e) {
|
||||
if (e.detail && e.detail.functional) {
|
||||
showComments();
|
||||
} else {
|
||||
hideComments();
|
||||
}
|
||||
});
|
||||
|
||||
// Check if already consented
|
||||
if (window.cookieConsent && window.cookieConsent.hasConsent('functional')) {
|
||||
showComments();
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
{{- else -}}
|
||||
{{/* No consent required - load comments normally */}}
|
||||
{{ partial (printf "comments/provider/%s" .Site.Params.comments.provider) . }}
|
||||
{{- end -}}
|
||||
{{ end }}
|
||||
@@ -0,0 +1,50 @@
|
||||
{{- if not site.Config.Privacy.GoogleAnalytics.Disable -}}
|
||||
{{- with site.Config.Services.GoogleAnalytics.ID -}}
|
||||
{{- if strings.HasPrefix (lower .) "ua-" -}}
|
||||
{{- warnf "Google Analytics 4 (GA4) replaced Google Universal Analytics (UA) effective 1 July 2023. See https://support.google.com/analytics/answer/11583528. Create a GA4 property and data stream, then replace the Google Analytics ID in your site configuration with the new value." -}}
|
||||
{{- else -}}
|
||||
{{/* Consent-gated Google Analytics - only loads after analytics consent */}}
|
||||
<script>
|
||||
(function() {
|
||||
var gaId = {{ . }};
|
||||
var loaded = false;
|
||||
var respectDNT = {{ site.Config.Privacy.GoogleAnalytics.RespectDoNotTrack }};
|
||||
|
||||
function loadGA() {
|
||||
if (loaded) return;
|
||||
|
||||
// Respect Do Not Track browser setting if configured
|
||||
if (respectDNT) {
|
||||
var dnt = (navigator.doNotTrack || window.doNotTrack || navigator.msDoNotTrack);
|
||||
if (dnt == "1" || dnt == "yes") {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
loaded = true;
|
||||
|
||||
var script = document.createElement('script');
|
||||
script.async = true;
|
||||
script.src = 'https://www.googletagmanager.com/gtag/js?id=' + gaId;
|
||||
document.head.appendChild(script);
|
||||
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
gtag('config', gaId);
|
||||
}
|
||||
|
||||
window.addEventListener('onCookieConsentChange', function(e) {
|
||||
if (e.detail && e.detail.analytics) {
|
||||
loadGA();
|
||||
}
|
||||
});
|
||||
|
||||
if (window.cookieConsent && window.cookieConsent.hasConsent('analytics')) {
|
||||
loadGA();
|
||||
}
|
||||
})();
|
||||
</script>
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
@@ -0,0 +1,68 @@
|
||||
{{- $cfg := .Site.Params.cookies -}}
|
||||
{{- $categories := $cfg.categories -}}
|
||||
|
||||
<div id="cookie-consent-banner" class="cookie-banner" aria-hidden="true" role="dialog" aria-labelledby="cookie-banner-title">
|
||||
<div class="cookie-banner__content">
|
||||
<div class="cookie-banner__text">
|
||||
<strong id="cookie-banner-title">{{ T "cookies.title" }}</strong>
|
||||
<p>{{ T "cookies.text" }}</p>
|
||||
</div>
|
||||
|
||||
<div class="cookie-banner__actions">
|
||||
<button class="cookie-btn cookie-btn--secondary" data-cookie-action="deny">
|
||||
{{ T "cookies.deny" }}
|
||||
</button>
|
||||
<button class="cookie-btn cookie-btn--primary" data-cookie-action="accept">
|
||||
{{ T "cookies.acceptAll" }}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{{- if $cfg.showSettings }}
|
||||
<button class="cookie-banner__settings-link" data-cookie-action="settings">
|
||||
{{ T "cookies.managePreferences" }}
|
||||
</button>
|
||||
{{- end }}
|
||||
|
||||
{{/* Settings panel */}}
|
||||
<div id="cookie-settings-panel" class="cookie-settings" aria-hidden="true">
|
||||
<h3>{{ T "cookies.settingsTitle" }}</h3>
|
||||
|
||||
<div class="cookie-category">
|
||||
<label>
|
||||
<input type="checkbox" name="necessary" checked disabled />
|
||||
<strong>{{ T "cookies.necessary.title" }}</strong>
|
||||
</label>
|
||||
<p>{{ T "cookies.necessary.text" }}</p>
|
||||
</div>
|
||||
|
||||
{{- if $categories.analytics -}}
|
||||
<div class="cookie-category">
|
||||
<label>
|
||||
<input type="checkbox" name="analytics" data-cookie-category="analytics" />
|
||||
<strong>{{ T "cookies.analytics.title" }}</strong>
|
||||
</label>
|
||||
<p>{{ T "cookies.analytics.text" }}</p>
|
||||
</div>
|
||||
{{- end -}}
|
||||
|
||||
{{- if $categories.functional -}}
|
||||
<div class="cookie-category">
|
||||
<label>
|
||||
<input type="checkbox" name="functional" data-cookie-category="functional" />
|
||||
<strong>{{ T "cookies.functional.title" }}</strong>
|
||||
</label>
|
||||
<p>{{ T "cookies.functional.text" }}</p>
|
||||
</div>
|
||||
{{- end -}}
|
||||
|
||||
<div class="cookie-settings__actions">
|
||||
<button class="cookie-btn cookie-btn--secondary" data-cookie-action="cancel">
|
||||
{{ T "cookies.cancel" }}
|
||||
</button>
|
||||
<button class="cookie-btn cookie-btn--primary" data-cookie-action="save">
|
||||
{{ T "cookies.savePreferences" }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,9 @@
|
||||
{{- if .Site.Params.cookies.enabled -}}
|
||||
{{/* Render the banner HTML */}}
|
||||
{{ partial "cookies/banner.html" . }}
|
||||
|
||||
{{/* Load the consent manager script */}}
|
||||
{{- $opts := dict "minify" hugo.IsProduction -}}
|
||||
{{- $script := resources.Get "ts/cookies.ts" | js.Build $opts | fingerprint -}}
|
||||
<script type="text/javascript" src="{{ $script.RelPermalink }}" defer></script>
|
||||
{{- end -}}
|
||||
@@ -1,2 +1,3 @@
|
||||
{{ partial "cookies/include.html" . }}
|
||||
{{ partialCached "footer/components/script.html" . }}
|
||||
{{ partial "footer/custom.html" . }}
|
||||
{{ partial "footer/custom.html" . }}
|
||||
|
||||
@@ -28,5 +28,10 @@
|
||||
<link rel="shortcut icon" href="{{ .Permalink }}" />
|
||||
{{ end }}
|
||||
|
||||
{{- partial "google_analytics.html" . -}}
|
||||
{{- if .Site.Params.cookies.enabled -}}
|
||||
{{- partial "cookies/analytics.html" . -}}
|
||||
{{- else -}}
|
||||
{{- template "_internal/google_analytics.html" . -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- partial "head/custom.html" . -}}
|
||||
|
||||
@@ -3,8 +3,7 @@
|
||||
/// Image: Image URL
|
||||
|
||||
/// Returns:
|
||||
/// Local: true if the image is local, false if it is remote
|
||||
/// Resource: Hugo image resource object, not nil if the image is local
|
||||
/// Resource: Hugo image resource object
|
||||
/// Permalink: Image URL
|
||||
/// Height: Image height
|
||||
/// Width: Image width
|
||||
@@ -13,10 +12,15 @@
|
||||
|
||||
{{ if .Image }}
|
||||
{{ $url := urls.Parse .Image }}
|
||||
{{ $permalink := .Image }}
|
||||
{{ $resource := "" }}
|
||||
|
||||
{{ if not (in (slice "https" "http") $url.Scheme) }}
|
||||
{{/* Local image */}}
|
||||
{{ $resource = .Resources.Get (printf "%s" (.Image | safeURL)) }}
|
||||
{{ $permalink = $resource.RelPermalink }}
|
||||
{{ else }}
|
||||
{{/* Remote image */}}
|
||||
{{ with try (resources.GetRemote $url) }}
|
||||
{{ with .Err }}
|
||||
{{ errorf "%s" . }}
|
||||
@@ -28,25 +32,22 @@
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
{{ if $resource }}
|
||||
{{- $isSVG := eq $resource.MediaType.SubType "svg" -}}
|
||||
{{- if $isSVG -}}
|
||||
{{ with $resource }}
|
||||
{{ if reflect.IsImageResourceWithMeta . }}
|
||||
{{ $result = dict
|
||||
"Local" true
|
||||
"Resource" $resource
|
||||
"Permalink" $resource.RelPermalink
|
||||
"Height" nil
|
||||
"Width" nil
|
||||
}}
|
||||
{{- else -}}
|
||||
{{- $result = dict
|
||||
"Local" true
|
||||
"Resource" $resource
|
||||
"Permalink" $resource.RelPermalink
|
||||
"Permalink" $permalink
|
||||
"Height" $resource.Height
|
||||
"Width" $resource.Width
|
||||
}}
|
||||
{{- end -}}
|
||||
{{ else }}
|
||||
{{ $result = dict
|
||||
"Resource" $resource
|
||||
"Permalink" $permalink
|
||||
"Height" nil
|
||||
"Width" nil
|
||||
}}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
{{- /*
|
||||
Params:
|
||||
Resource: Hugo image resource object (Optional, for processing)
|
||||
Widths: Slice of widths to generate for srcset
|
||||
Attributes: Map of HTML attributes for the <img> tag
|
||||
*/ -}}
|
||||
|
||||
{{- $resource := .Resource -}}
|
||||
{{- $widths := .Widths -}}
|
||||
{{- $attributes := .Attributes | default dict -}}
|
||||
|
||||
{{/* Generate srcset if Resource and Widths are provided */}}
|
||||
{{- if and $widths $resource (reflect.IsImageResourceProcessable $resource) -}}
|
||||
{{- $srcset := slice -}}
|
||||
{{- range $widths -}}
|
||||
{{- if lt . $resource.Width -}}
|
||||
{{- $resized := $resource.Resize (printf "%dx" .) -}}
|
||||
{{- $srcset = $srcset | append (printf "%s %dw" $resized.RelPermalink .) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- if gt (len $srcset) 0 -}}
|
||||
{{- $permalink := default $resource.RelPermalink (index $attributes "src") -}}
|
||||
{{- $srcset = $srcset | append (printf "%s %dw" $permalink $resource.Width) -}}
|
||||
{{- $attributes = merge $attributes (dict "srcset" (delimit $srcset ", ")) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
<img {{- range $k, $v := $attributes -}}
|
||||
{{- if $v -}}
|
||||
{{- printf " %s=%q" (lower $k) (printf "%v" $v) | safeHTMLAttr -}}
|
||||
{{- end -}}
|
||||
{{- end -}}>
|
||||
@@ -0,0 +1,41 @@
|
||||
{{- /*
|
||||
Params:
|
||||
Resource: Hugo image resource object (Optional, for processing)
|
||||
Width: Image width (Required)
|
||||
Height: Image height (Required)
|
||||
Resize: Whether to perform resize (Optional, default: false)
|
||||
Attributes: Map of HTML attributes for the <img> tag
|
||||
*/ -}}
|
||||
|
||||
{{- $resource := .Resource -}}
|
||||
{{- $width := .Width -}}
|
||||
{{- $height := .Height -}}
|
||||
{{- $resize := .Resize -}}
|
||||
{{- $attributes := .Attributes | default dict -}}
|
||||
|
||||
{{- if and $resize $resource (reflect.IsImageResourceProcessable $resource) $width $height -}}
|
||||
{{/* Create thumbnail with 1x/2x descriptors */}}
|
||||
{{- $srcset := slice -}}
|
||||
{{- range (slice 1 2) -}}
|
||||
{{- $w := mul $width . -}}
|
||||
{{- $h := mul $height . -}}
|
||||
{{- if and (le $w $resource.Width) (le $h $resource.Height) -}}
|
||||
{{- $resized := $resource.Fill (printf "%dx%d" $w $h) -}}
|
||||
{{- $srcset = $srcset | append (printf "%s %dx" $resized.RelPermalink .) -}}
|
||||
|
||||
{{- if eq . 1 -}}
|
||||
{{- $attributes = merge $attributes (dict "src" $resized.RelPermalink) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
{{- if gt (len $srcset) 0 -}}
|
||||
{{- $attributes = merge $attributes (dict "width" $width "height" $height "srcset" (delimit $srcset ", ")) -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
||||
<img {{- range $k, $v := $attributes -}}
|
||||
{{- if $v -}}
|
||||
{{- printf " %s=%q" (lower $k) (printf "%v" $v) | safeHTMLAttr -}}
|
||||
{{- end -}}
|
||||
{{- end -}}>
|
||||
@@ -35,7 +35,7 @@
|
||||
<li>
|
||||
<a
|
||||
href='{{ .URL }}'
|
||||
{{ if eq (default true .Params.newTab) true }}target="_blank"{{ end }}
|
||||
{{ if .Params.newTab }}target="_blank"{{ end }}
|
||||
{{ with .Name }}title="{{ . }}"{{ end }}
|
||||
rel="me"
|
||||
>
|
||||
@@ -53,13 +53,9 @@
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
{{ $active := or (eq $currentPage.RelPermalink .URL) (or ($currentPage.HasMenuCurrent "main" .) ($currentPage.IsMenuCurrent "main" .)) }}
|
||||
<li {{ if $active }} class='current' {{ end }}>
|
||||
<a href='{{ .URL }}' {{ if eq .Params.newTab true }}target="_blank"{{ end }}>
|
||||
{{ $icon := default .Pre .Params.Icon }}
|
||||
{{ if .Pre }}
|
||||
{{ warnf "Menu item [%s] is using [pre] field to set icon, please use [params.icon] instead.\nMore information: https://stack.jimmycai.com/config/menu" .URL }}
|
||||
{{ end }}
|
||||
{{ with $icon }}
|
||||
<li {{ if $active }} class='current'{{ end }}>
|
||||
<a href='{{ .URL }}' {{ if .Params.newTab }}target="_blank"{{ end }}>
|
||||
{{ with .Params.Icon }}
|
||||
{{ partial "helper/icon" . }}
|
||||
{{ end }}
|
||||
<span>{{- .Name -}}</span>
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ features = [
|
||||
"search",
|
||||
]
|
||||
|
||||
min_version = "0.154.0"
|
||||
min_version = "0.157.0"
|
||||
|
||||
[author]
|
||||
name = "Jimmy Cai"
|
||||
|
||||
Reference in New Issue
Block a user