-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5ee1b3
commit 8b7f6fd
Showing
12 changed files
with
82 additions
and
35 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
title: ট্যাগসমূহ | ||
--- |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
animal rights: প্রাণী অধিকার | ||
wikipedia: উইকিপিডিয়া | ||
proofreading: প্রুফ সংশোধন | ||
philosophy: দর্শন |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
{{- block "style" . }}{{ end -}} | ||
{{- block "script" . }}{{ end }} | ||
{{- template "_internal/google_analytics.html" . }} | ||
{{/* {{- template "_internal/google_analytics.html" . }} */}} | ||
</head> | ||
<body> | ||
{{ partial "header.html" . }} | ||
|
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
{{ define "main" }} | ||
<div class="container"> | ||
<div class="row justify-content-center pt-5 mt-2"> | ||
<section class="col-lg-9"> | ||
{{ partial "listitem.html" . }} | ||
</section> | ||
<div class="bg-secondary py-4"> | ||
<div class="container d-lg-flex justify-content-between py-2 py-lg-3"> | ||
<div class="order-lg-2 mb-3 mb-lg-0 pt-lg-2"> | ||
{{ partial "meta.breadcrumb" . }} | ||
</div> | ||
<div class="order-lg-1 pe-lg-4 text-center text-lg-start"> | ||
<h1 class="h3 mb-0">{{ .Title | humanize }}</h1> | ||
{{/* {{ $translations := .Site.Data.tag_translations }} | ||
{{ $translated := index $translations .Title }} | ||
<h1 class="h3 mb-0">{{ if $translated }}{{ $translated }}{{ else }}{{ .Title }}{{ end }}</h1> */}} | ||
{{- if .IsTranslated -}} | ||
{{ range .Translations }} | ||
<a href="{{ .Permalink }}">{{i18n "alter" (dict "alter" .Language.LanguageName | ||
)}}</a> | ||
{{- end -}} | ||
{{ end }} | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<div class="row justify-content-center pt-5 mt-2"> | ||
<section class="col-lg-9"> | ||
{{ partial "listitem.html" . }} | ||
</section> | ||
</div> | ||
</div> | ||
{{ end }} |
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