Merge branch 'main' into mailchimp

This commit is contained in:
Emruz Hossain 2021-05-17 00:16:15 +06:00 committed by GitHub
commit 1c81c3baac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 483 additions and 1691 deletions

View file

@ -21,7 +21,7 @@ jobs:
npm run autoprefixer
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3.9.1
uses: peter-evans/create-pull-request@v3.9.2
with:
branch: autoprefixer
branch-suffix: timestamp

71
.github/workflows/codeql-analysis.yml vendored Normal file
View file

@ -0,0 +1,71 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '19 16 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
# Learn more:
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
#- run: |
# make bootstrap
# make release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1

View file

@ -10,4 +10,4 @@ jobs:
# checkout to latest commit
- uses: actions/checkout@master
# run markdown linter
- uses: gaurav-nelson/github-action-markdown-link-check@v1
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.12

View file

@ -106,3 +106,6 @@ other = "সার্টিফিকেট দেখুন"
[notes]
other = "নোট সমূহ"
[disclaimer_text]
other = "দায় বিজ্ঞপ্তি"

View file

@ -109,3 +109,6 @@ other = "查看证书"
[notes]
other = "笔记"
[disclaimer_text]
other = "责任通知"

View file

@ -109,3 +109,6 @@ other = "Bekijk certificaat"
[notes]
other = "Opmerkingen"
[disclaimer_text]
other = "Haftungshinweis"

View file

@ -109,3 +109,6 @@ other = "View Certificate"
[notes]
other = "Notes"
[disclaimer_text]
other = "Liability Notice"

View file

@ -109,3 +109,6 @@ other = "Ver Certificado"
[notes]
other = "Notas"
[disclaimer_text]
other = "Aviso de responsabilidad"

View file

@ -109,3 +109,6 @@ other = "Afficher le certificat"
[notes]
other = "Remarques"
[disclaimer_text]
other = "Avis de responsabilité"

View file

@ -109,3 +109,6 @@ other = "प्रमाणपत्र देखें"
[notes]
other = "टिप्पणियाँ"
[disclaimer_text]
other = "दायित्व सूचना"

View file

@ -109,3 +109,6 @@ other = "Lihat Sertifikat"
[notes]
other = "Catatan"
[disclaimer_text]
other = "Pemberitahuan Kewajiban"

View file

@ -109,3 +109,6 @@ other = "Féach ar an Teastas"
[notes]
other = "Appunti"
[disclaimer_text]
other = "Avviso di responsabilità"

View file

@ -106,3 +106,6 @@ other = "ビューの証明書"
[notes]
other = "ノート"
[disclaimer_text]
other = "責任通知"

View file

@ -109,3 +109,6 @@ other = "인증서보기"
[notes]
other = "메모"
[disclaimer_text]
other = "책임 고지"

View file

@ -109,3 +109,6 @@ other = "Просмотреть сертификат"
[notes]
other = "Ноты"
[disclaimer_text]
other = "Уведомление об ответственности"

View file

@ -109,3 +109,6 @@ other = "Xem chứng chỉ"
[notes]
other = "Ghi chú"
[disclaimer_text]
other = "Thông báo trách nhiệm"

View file

@ -4,10 +4,13 @@
{{ $contactMeEnabled := site.Params.footer.contactMe.enable | default true }}
{{ $newsletterEnabled := site.Params.footer.newsletter.enable | default true }}
{{ $credentialsEnabled := site.Params.footer.credentials.enable | default true }}
{{ $disclaimerEnabled := site.Params.footer.disclaimer.enable | default false }}
{{/* Keep backward compatibility for the newsletter function */}}
{{ if site.Params.newsletter.enable }}
{{ $newsletterEnabled = true }}
{{ else }}
{{ $newsletterEnabled = false }}
{{ end }}
{{ if $footerEnabled }}
@ -29,6 +32,13 @@
{{ end }}
{{ end }}
{{ $disclaimer := "" }}
{{ $siteConfig := (index site.Data site.Language.Lang).site }}
{{ if $siteConfig.disclaimer }}
{{ $disclaimer = $siteConfig.disclaimer }}
{{ end }}
{{/* footer logos */}}
{{ $themeLogo := "/images/theme-logo.png" }}
{{ $hugoLogo := "/images/hugo-logo.svg" }}
@ -110,6 +120,12 @@
{{ end }}
</div>
</div>
{{ if and $disclaimerEnabled $disclaimer}}
<hr />
<div class="container">
<p id="disclaimer"><strong>{{ i18n "disclaimer_text" }}:</strong> {{ $disclaimer }}</p>
</div>
{{ end }}
{{ if $credentialsEnabled }}
<hr />
<div class="container">

2028
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -17,7 +17,7 @@
},
"homepage": "https://github.com/hossainemruz/toha#readme",
"devDependencies": {
"autoprefixer": "^9.8.6",
"postcss-cli": "^7.1.2"
"autoprefixer": "^10.2.5",
"postcss-cli": "^8.3.1"
}
}

View file

@ -339,6 +339,14 @@ mark {
background-color: #e5e9f2;
}
.footer #disclaimer{
color: #8392a5 !important;
text-align: justify;
}
.footer #disclaimer>strong{
color: #c0ccda!important;
}
.footer #theme {
color: #c0ccda;
}

View file

@ -37,7 +37,6 @@ body {
}
.toc-holder {
position: -webkit-sticky;
position: sticky;
top: 4.5rem;
overflow-x: hidden;

View file

@ -8,7 +8,6 @@
.sidebar-holder {
top: 2.5rem;
position: -webkit-sticky;
position: sticky;
background-color: #f9fafc;
height: 100vh;
@ -192,7 +191,6 @@ a.focused {
transition: all ease-out 0.3s;
}
.sidebar-holder {
position: -webkit-sticky;
position: sticky;
top: 2.5rem;
width: 100%;
@ -222,7 +220,6 @@ a.focused {
transition: all ease-out 0.3s;
}
.sidebar-holder {
position: -webkit-sticky;
position: sticky;
top: 2.5rem;
width: 100%;