Skip to content

Commit

Permalink
add features to homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazarre committed Feb 9, 2024
1 parent f6ff03d commit ed6a245
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 15 deletions.
3 changes: 2 additions & 1 deletion config.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
baseURL = 'https://hazarre.github.io/'
languageCode = 'en-us'
title = "HenryChang"

enableEmoji = true
# -- Markup --
# These settings are required for the theme to function.

Expand Down Expand Up @@ -68,4 +68,5 @@ title = "HenryChang"
noHl = false
style = 'monokai'
tabWidth = 4


22 changes: 16 additions & 6 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,22 @@ title: Henry Chang's Homepage
date: 2021-12-22T17:46:04+08:00
draft: false
---
**Interested in Full Stack Development in startup and engineering environments. Problem solving focused. Have experience in DevOps, frontend, data analytics, data visualization and machine learning.**

### **Projects Highlight**
**Interactive 3D visualization [Tutorial Website](https://quantum.bard.edu/hc) for Quantum Entanglement.**
**For all projects please see [#projects](/tags/project/).**
Interested in full-stack development in startup and engineering environments. Problem solving focused. Have experience in DevOps, frontend, data analytics, data visualization and machine learning.

Lover of cardio :running: :soccer: :flying_disc:, cooking:fork_and_knife:, outdoors :sunrise_over_mountains:, reading :book:, science :telescope:, and thinking in terms of $\ket 0$ and $ \ket 1$.

### **Education**
**Computer Science and Physics, BA, Bard College, NY. Graduated May, 2023.**
### Projects Highlight
Interactive 3D visualization [Tutorial Website](https://quantum.bard.edu/hc) for Quantum Entanglement.
For all projects please see [#projects](/tags/project/).


### Education
Computer Science and Physics, BA, Bard College, NY. Graduated May, 2023.






*:down_arrow: :down_arrow: Scroll down for contact & social links :down_arrow: :down_arrow:*
7 changes: 4 additions & 3 deletions content/posts/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ date: 2021-12-22T17:23:51+08:00
draft: false
tags: ["about", "project", "hugo", "static site", "JAMstack"]
---
This is a static site build with [Hugo](https://gohugo.io/) and hosted on Github.

Each page layout is structured under `layout/_default/`, with reusable componenents under `partials/`. Additionally, hugo support `shortcodes/` to add html content inside markdown posts.

Some features of this blogs includes:
- Math typesetting with KaTeX.js.
- 3D animation with Three.js.
- Markdown.
- Layout CSS with bootstrap.js.

See all features in action at [this example post]({{< ref "./testpost" >}}).

This is a static site build with [Hugo](https://gohugo.io/) and hosted on Github. Each page layout is structured under `layout/_default/`, with reusable componenents under `partials/`. Additionally, hugo support `shortcodes/` to add html content inside markdown posts.

Full source code can be found on the repo https://github.com/Hazarre/Hazarre.github.io.
2 changes: 1 addition & 1 deletion content/posts/testpost.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ date: 2021-12-22T17:23:51+08:00
draft: false
tags: ["math", "program"]
---
This is an example post to demonstrate the media formats that can be posted on this website.
This is an example post to demonstrate the media formats that can be posted on this website. For details about implementations, see [How this blog is built]({{< ref "./about" >}})

## LaTeX math typesetting

Expand Down
11 changes: 7 additions & 4 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ <h6 class="text-uppercase fw-bold mb-4">
</i>Henry Chang
</h6>
<p>
Engineer interested CS, physics and problem solving.
Engineer interested in CS, physics and problem solving.
</p>
</div>
<!-- Grid column -->
Expand All @@ -52,14 +52,15 @@ <h6 class="text-uppercase fw-bold mb-4">
{{ range .Site.Params.otherSocial }}
{{ $icon_name := print .icon_name | safeHTML }}
{{ $url := print .url | safeHTML }}
<a href="" class="text-reset">
<a href={{$url}} class="text-reset">
<i class="fa-lg fab {{$icon_name}}"></i>
</a>
{{ end }}

{{ range .Site.Params.otherSocialLinks }}
{{ $text := print .text | safeHTML }}
<a href="" class="text-reset">
{{ $url := print .url | safeHTML }}
<a href={{$url}} class="text-reset">
{{$text}}
</a>
{{ end }}
Expand Down Expand Up @@ -122,4 +123,6 @@ <h6 class="text-uppercase fw-bold mb-4">
{{ range .Site.Params.custom_js -}}
<script type="text/javascript" src="{{ . | absURL }}"></script>
{{- end }}
</footer>
</footer>


0 comments on commit ed6a245

Please sign in to comment.