diff options
Diffstat (limited to 'layouts/partials/body')
-rw-r--r-- | layouts/partials/body/contacts.html | 17 | ||||
-rw-r--r-- | layouts/partials/body/education.html | 21 | ||||
-rw-r--r-- | layouts/partials/body/experience.html | 21 | ||||
-rw-r--r-- | layouts/partials/body/projects.html | 19 | ||||
-rw-r--r-- | layouts/partials/body/skills.html | 11 |
5 files changed, 0 insertions, 89 deletions
diff --git a/layouts/partials/body/contacts.html b/layouts/partials/body/contacts.html deleted file mode 100644 index b87b8cb..0000000 --- a/layouts/partials/body/contacts.html +++ /dev/null @@ -1,17 +0,0 @@ -<div style="text-align: center;"> - <h1 class="name">{{ .Site.Params.Name }}</h1> - <div style="font-size: small;"> - {{ with .Site.Params.Phone }} - <a href="tel:{{ . }}">{{ . }}</a><span> |</span> - {{ end }} - {{ with .Site.Params.Email }} - <a href="mailto:{{ . }}">{{ . }}</a><span> |</span> - {{ end }} - {{ with .Site.Params.LinkedIn }} - <a href="https://{{ . }}">{{ . }}</a><span> |</span> - {{ end }} - {{ with .Site.Params.GitHub }} - <a href="https://{{ . }}">{{ . }}</a> - {{ end }} - </div> -</div>
\ No newline at end of file diff --git a/layouts/partials/body/education.html b/layouts/partials/body/education.html deleted file mode 100644 index f32f6ba..0000000 --- a/layouts/partials/body/education.html +++ /dev/null @@ -1,21 +0,0 @@ -{{ with .Site.GetPage "/education" }} -<h3>Education</h3> -<table> - <tbody> - {{ range sort (.Pages) "Params.end_date" "desc" }} - <tr> - <td><strong>{{ .Title }}</strong></td> - <td style="text-align: right;">{{ with .Params.location}}{{ . }}{{ end }}</td> - </tr> - <tr> - <td><em>{{ with .Params.degree}}{{ . }}{{ end }}</em> - </td> - <td style="text-align: right;"><em> - {{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} – - {{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}</em> - </td> - </tr> - {{ end }} - </tbody> -</table> -{{ end }}
\ No newline at end of file diff --git a/layouts/partials/body/experience.html b/layouts/partials/body/experience.html deleted file mode 100644 index 5e25f37..0000000 --- a/layouts/partials/body/experience.html +++ /dev/null @@ -1,21 +0,0 @@ -{{ with .Site.GetPage "/experience"}} -<h3>Experience</h3> -{{ range sort (.Pages) "Params.start_date" "desc" }} -<table> - <tbody> - <tr> - <td><strong>{{ .Title }}</strong></td> - <td style="text-align: right;"> - {{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} – - {{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }} - </td> - </tr> - <tr> - <td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td> - <td style="text-align: right;"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td> - </tr> - </tbody> -</table> -{{ .Content }} -{{ end }} -{{ end }}
\ No newline at end of file diff --git a/layouts/partials/body/projects.html b/layouts/partials/body/projects.html deleted file mode 100644 index ab4b497..0000000 --- a/layouts/partials/body/projects.html +++ /dev/null @@ -1,19 +0,0 @@ -{{ with .Site.GetPage "/projects" }} -<h3>Projects</h3> -{{ range sort (.Pages) "Params.start_date" "desc" }} -<table> - <tbody> - <tr> - <td><strong>{{ .Title }} </strong><span>|</span> - <em>{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em> - </td> - <td style="text-align: right;"> - {{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} – - {{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }} - </td> - </tr> - </tbody> -</table> -{{ .Content }} -{{ end }} -{{ end }}
\ No newline at end of file diff --git a/layouts/partials/body/skills.html b/layouts/partials/body/skills.html deleted file mode 100644 index 38dd515..0000000 --- a/layouts/partials/body/skills.html +++ /dev/null @@ -1,11 +0,0 @@ -<h3>Technical Skills</h3> -<div class="skills"> - <strong>Languages</strong>: Java, Python, C/C++, SQL - (Postgres), JavaScript, HTML/CSS, R<br /> - <strong>Frameworks</strong>: React, Node.js, Flask, JUnit, - WordPress, Material-UI, FastAPI<br /> - <strong>Developer Tools</strong>: Git, Docker, TravisCI, Google - Cloud Platform, VS Code, Visual Studio, PyCharm, IntelliJ, - Eclipse<br /> - <strong>Libraries</strong>: pandas, NumPy, Matplotlib -</div>
\ No newline at end of file |