-
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
Showing
25 changed files
with
2,036 additions
and
3 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
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,10 @@ | ||
--- | ||
author: "Divyanshu Kumar | Karan Pratap Shaw" | ||
title: "One Train Experience | The Job Human Trafficking Racket in India" | ||
date: "2024-08-03" | ||
description: "The Informal Jobs Trafficking which happens Everyday, Unaccounted for in the Country." | ||
tags: [ | ||
"Modern Slavery", "India", "Indian Rail" | ||
] | ||
draft: "false" | ||
--- |
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,30 @@ | ||
{{ define "main" }} | ||
|
||
<h1 class="pg-title">{{ .Title | emojify }}</h1> | ||
|
||
{{/* Meta */}} | ||
<div class="meta"> | ||
{{ partial "single/meta.html" . }} | ||
{{ partial "single/meta-tags.html" . }} | ||
</div> | ||
|
||
{{ partial "single/toc.html" . }} | ||
{{ partial "opengraph.html" . }} | ||
|
||
{{ .Content }} | ||
|
||
{{/* Pagination */}} | ||
{{ partial "single/pagination.html" . }} | ||
|
||
{{/* Comments */}} | ||
{{ if .Params.showComments | default (.Site.Params.article.showComments | default false) }} | ||
{{ if templates.Exists "partials/comments.html" }} | ||
<div class="comment"> | ||
{{ partial "comments.html" . }} | ||
</div> | ||
{{ else }} | ||
{{ warnf "Comments are enabled for %s but no comments partial exists." .File.Path }} | ||
{{ end }} | ||
{{ end }} | ||
|
||
{{ 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<meta property="og:url" content="{{ .Permalink }}"> | ||
|
||
{{- with or site.Title site.Params.title | plainify }} | ||
<meta property="og:site_name" content="{{ . }}"> | ||
{{- end }} | ||
|
||
{{- with or .Title site.Title site.Params.title | plainify }} | ||
<meta property="og:title" content="{{ . }}"> | ||
{{- end }} | ||
|
||
{{- with or .Description .Summary site.Params.description | plainify | htmlUnescape | chomp }} | ||
<meta property="og:description" content="{{ . }}"> | ||
{{- end }} | ||
|
||
{{- with or .Params.locale site.Language.LanguageCode }} | ||
<meta property="og:locale" content="{{ replace . `-` `_` }}"> | ||
{{- end }} | ||
|
||
{{- if .IsPage }} | ||
<meta property="og:type" content="article"> | ||
{{- with .Section }} | ||
<meta property="article:section" content="{{ . }}"> | ||
{{- end }} | ||
{{- $ISO8601 := "2006-01-02T15:04:05-07:00" }} | ||
{{- with .PublishDate }} | ||
<meta property="article:published_time" {{ .Format $ISO8601 | printf "content=%q" | safeHTMLAttr }}> | ||
{{- end }} | ||
{{- with .Lastmod }} | ||
<meta property="article:modified_time" {{ .Format $ISO8601 | printf "content=%q" | safeHTMLAttr }}> | ||
{{- end }} | ||
{{- range .GetTerms "tags" | first 6 }} | ||
<meta property="article:tag" content="{{ .Page.Title | plainify }}"> | ||
{{- end }} | ||
{{- else }} | ||
<meta property="og:type" content="website"> | ||
{{- end }} | ||
|
||
{{- with partial "_funcs/get-page-images" . }} | ||
{{- range . | first 6 }} | ||
<meta property="og:image" content="{{ .Permalink }}"> | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- with .Params.audio }} | ||
{{- range . | first 6 }} | ||
<meta property="og:audio" content="{{ . | absURL }}"> | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- with .Params.videos }} | ||
{{- range . | first 6 }} | ||
<meta property="og:video" content="{{ . | absURL }}"> | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- range .GetTerms "series" }} | ||
{{- range .Pages | first 7 }} | ||
{{- if ne $ . }} | ||
<meta property="og:see_also" content="{{ .Permalink }}"> | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
|
||
{{- with site.Params.social }} | ||
{{- if reflect.IsMap . }} | ||
{{- with .facebook_app_id }} | ||
<meta property="fb:app_id" content="{{ . }}"> | ||
{{- else }} | ||
{{- with .facebook_admin }} | ||
<meta property="fb:admins" content="{{ . }}"> | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} | ||
{{- 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
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
Oops, something went wrong.