-
Notifications
You must be signed in to change notification settings - Fork 2
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
f361943
commit e676ec3
Showing
11 changed files
with
162 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1267,6 +1267,10 @@ video { | |
margin-top: 0.2em; | ||
} | ||
|
||
.mt-0 { | ||
margin-top: 0px; | ||
} | ||
|
||
.block { | ||
display: block; | ||
} | ||
|
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,11 +1,21 @@ | ||
--- | ||
title: "Projects" | ||
date: | ||
license: false | ||
draft: true | ||
showTitle: true | ||
description: "" | ||
|
||
categories: [] | ||
tags: [] | ||
|
||
comments: false | ||
license: false | ||
toc: false | ||
katex: false | ||
|
||
prevFile: "" | ||
nextFile: "" | ||
introFile: "" | ||
--- | ||
|
||
# Projects | ||
series: 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
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,61 @@ | ||
{{ define "main" }} | ||
|
||
{{- $showTitle := .Params.showTitle -}} | ||
{{ $tutorials := .Site.GetPage "section" "tutorials" }} | ||
|
||
<div class="prose-singularisart dark:prose-invert px-4 py-4 md:py-3 md:px-8 max-w-[1000px] mx-auto min-h-[100vh] flex flex-col"> | ||
{{- if eq $showTitle true -}} | ||
<h1 class="text-center">{{ .Title }}</h1> | ||
{{- end -}} | ||
|
||
<h2>Tutorials</h2> | ||
|
||
{{ range $tutorials.Pages }} | ||
{{- if not .Params.series }} | ||
{{- $url := .Page.Permalink }} | ||
{{- with .Params.introFile }} | ||
{{- $url = printf "%s%s" $url . }} | ||
{{- end }} | ||
|
||
<div class="mb-[2em]"> | ||
<a class="hover:no-underline text-gray-700 dark:text-gray-300" href={{ $url }}> | ||
<div class="text-[80%] font-small-caps lowercase font-[700]"> | ||
<span>{{ .Page.Date.Format "January 2 Monday, 2006" }}</span> | ||
{{ if ne .Lastmod .Date }} | ||
<span class="px-2 text-primary-500">•</span> | ||
Updated: {{ .Page.Lastmod.Format "January 2 Monday, 2006" }} | ||
{{ end }} | ||
<span class="px-2 text-primary-500">•</span> | ||
<span>{{ .Page.WordCount }} word{{ if (ne .Page.WordCount 1) }}s{{ end }}</span> | ||
<span class="px-2 text-primary-500">•</span> | ||
<span title="reading-time">{{ .Page.ReadingTime }} minute{{ if (ne .Page.ReadingTime 1) }}s{{ end }}</span> | ||
</div> | ||
<h2 class="mb-[0.2em] mr-0 mt-0 ml-0 font-[600] leading-7">{{ .Title }}</h2> | ||
<p class="m-0">{{ .Summary }}</p> | ||
</a> | ||
</div> | ||
{{ end }} | ||
{{ end }} | ||
|
||
<h2>Academics</h2> | ||
|
||
All courses taken <br/> | ||
|
||
Notes <br/> | ||
|
||
Papers <br/> | ||
|
||
Thesis <br/> | ||
|
||
<h2>Projects</h2> | ||
|
||
Notes Dashboard Manager <br/> | ||
|
||
Memory Trainer <br/> | ||
|
||
School Setup <br/> | ||
</div> | ||
|
||
{{ partial "footer.html" . }} | ||
|
||
{{ 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,40 @@ | ||
{{ define "main" }} | ||
|
||
{{- $showTitle := .Params.showTitle -}} | ||
|
||
<div class="prose-singularisart dark:prose-invert px-4 py-4 md:py-3 md:px-8 max-w-[1000px] mx-auto min-h-[100vh] flex flex-col"> | ||
{{ $tutorials := .Site.GetPage "section" "tutorials" }} | ||
{{- if eq $showTitle true -}} | ||
<h1 class="text-center">{{ .Title }}</h1> | ||
{{- end -}} | ||
{{ .Content }} | ||
|
||
{{ range $tutorials.Pages }} | ||
{{- if not .Params.series }} | ||
{{- $url := .Page.Permalink }} | ||
{{- with .Params.introFile }} | ||
{{- $url = printf "%s%s" $url . }} | ||
{{- end }} | ||
|
||
<div class="mb-[2em]"> | ||
<a class="hover:no-underline text-gray-700 dark:text-gray-300" href={{ $url }}> | ||
<div class="text-[80%] font-small-caps lowercase font-[700]"> | ||
<span>{{ .Page.Date.Format "January 2 Monday, 2006" }}</span> | ||
{{ if ne .Lastmod .Date }} | ||
<span class="px-2 text-primary-500">•</span> | ||
Updated: {{ .Page.Lastmod.Format "January 2 Monday, 2006" }} | ||
{{ end }} | ||
<span class="px-2 text-primary-500">•</span> | ||
<span>{{ .Page.WordCount }} word{{ if (ne .Page.WordCount 1) }}s{{ end }}</span> | ||
<span class="px-2 text-primary-500">•</span> | ||
<span title="reading-time">{{ .Page.ReadingTime }} minute{{ if (ne .Page.ReadingTime 1) }}s{{ end }}</span> | ||
</div> | ||
<h2 class="mb-[0.2em] mr-0 mt-0 ml-0 font-[600] leading-7">{{ .Title }}</h2> | ||
<p class="m-0">{{ .Summary }}</p> | ||
</a> | ||
</div> | ||
{{ end }} | ||
{{ end }} | ||
</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