generated from techfolios/template
-
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
0 parents
commit e94f741
Showing
66 changed files
with
2,855 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Problem Report | ||
about: For communicating problems creating your professional portfolio | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
(Please replace this comment with your problem report. Tell us what went wrong. | ||
|
||
If it involves console output, then please cut and paste the output into this field---don't take a snapshot and paste the image. | ||
|
||
On the other hand, if the problem is with the visual layout of your portfolio, then please do make a snapshot. | ||
|
||
Finally, don't forget to include the URL to your repository so we can take a look at it!) |
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,25 @@ | ||
name: Build and deploy Jekyll site to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
github-pages: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/cache@v2 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }} | ||
restore-keys: | | ||
${{ runner.os }}-gems- | ||
- uses: limitusus/json-syntax-check@v1 | ||
with: | ||
pattern: "\\bio.json$" | ||
- uses: helaili/[email protected] # Choose any one of the Jekyll Actions | ||
with: # Some relative inputs of your action | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
target_branch: 'gh-pages' |
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,7 @@ | ||
_site/ | ||
.DS_Store | ||
.sass-cache/ | ||
.jekyll-cache/ | ||
.jekyll-metadata | ||
Gemfile.lock | ||
.idea |
Empty file.
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 @@ | ||
--- | ||
layout: missingpage | ||
--- |
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,14 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "jekyll", "~> 4.2.0" | ||
|
||
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem and associated library. | ||
platforms :mingw, :x64_mingw, :mswin, :jruby do | ||
gem "tzinfo", "~> 1.2" | ||
gem "tzinfo-data" | ||
end | ||
|
||
gem "webrick", "~> 1.7" | ||
gem 'html-proofer' | ||
gem 'jekyll-gist' | ||
gem 'rouge' |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 TechFolios | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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 @@ | ||
# Professional Portfolio | ||
|
||
For details on this professional portfolio, please see https://techfolios.github.io. |
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,32 @@ | ||
# REQUIRED CHANGES | ||
# Edit next line to provide your own name. | ||
title: Molly Maluhia | Professional Portfolio | ||
# Edit next line, replacing 'techfolios' with your github username | ||
url: "https://techfolios.github.io" | ||
# Edit next line so that baseurl is "" if your repo is <username>.github.io | ||
baseurl: "/template" | ||
|
||
# OPTIONAL CHANGES | ||
## Specify the theme using any of the css files in css/techfolio-theme | ||
techfolio-theme: default.css | ||
## Specify the formatting for triple backquote code sections. | ||
rouge-theme: github.css | ||
|
||
# DON'T CHANGE THE FOLLOWING (unless you know what you're doing) | ||
markdown: kramdown | ||
kramdown: | ||
hard_wrap: false | ||
input: GFM | ||
syntax_highlighter: rouge | ||
strict_front_matter: true | ||
mathjax: true | ||
exclude: | ||
- Gemfile | ||
- Gemfile.lock | ||
- LICENSE | ||
- README.md | ||
include: | ||
- .nojekyll | ||
- _data | ||
plugins: | ||
- jekyll-gist |
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,118 @@ | ||
{ | ||
"basics": { | ||
"name": "Molly Maluhia", | ||
"label": "Student", | ||
"picture": "https://github.com/kambergjohnson.png", | ||
"email": "[email protected]", | ||
"phone": "808-333-4444", | ||
"website": "https://mmaluhia.github.io", | ||
"summary": "I am studying for a B.S. in Computer Science in the Department of Information and Computer Sciences at the University of Hawaii. I expect to graduate in Spring, 2024.", | ||
"location": { "address": "", "postalCode": "96822", "city": "Honolulu", "countryCode": "USA", "region": "Hawaii" }, | ||
"profiles": [ | ||
{ "network": "github", "username": "mmaluhia", "url": "http://github.com/changeme" }, | ||
{ "network": "linkedin", "username": "mollymaluhia", "url": "http://linkedin.com/in/changeme" }, | ||
{ "network": "twitter", "username": "mollymal", "url": "http://twitter.com/changeme" }, | ||
{ "network": "instagram", "username": "molly", "url": "http://instagram.com/changeme" } | ||
] | ||
}, | ||
"interests": [ | ||
{ "name": "Interactive media" }, | ||
{ "name": "Neuromorphic Computing" }, | ||
{ "name": "Quantum Computing" }, | ||
{ "name": "Robotics" }, | ||
{ "name": "3D Graphics" } | ||
], | ||
"skills": [ | ||
{ | ||
"name": "Languages and Frameworks", | ||
"keywords": [ "C", "C++", "Java", "Javascript", "Assembly", "Common Lisp" ] | ||
}, | ||
{ | ||
"name": "Toolsets/OS", | ||
"keywords": [ "MacOS", "Ubuntu", "Git/GitHub", "g++", "TI LaunchPad" ] | ||
} | ||
], | ||
"education": [ | ||
{ | ||
"institution": "University of Hawaii, Honolulu, HI", | ||
"area": "Computer Science (expected Spring, 2018)", | ||
"studyType": "B.S.", | ||
"startDate": "2013-09-01", | ||
"endDate": "Present", | ||
"courses": [ | ||
] | ||
} | ||
], | ||
"work": [ | ||
{ | ||
"company": "UH Manoa Board of Publications", | ||
"position": "Web Developer", | ||
"website": "", | ||
"startDate": "2015-08-01", | ||
"endDate": "Present", | ||
"summary": "Head of online presence for Ka Leo", | ||
"highlights": [ | ||
"Maintain, update, and oversee official college newspaper website", | ||
"Drive, design and build student-community projects for UH Manoa" | ||
] | ||
}, | ||
{ | ||
"company": "UH Information Technology Services", | ||
"position": "Help Desk Consultant", | ||
"website": "http://www.hawaii.edu/its/", | ||
"startDate": "2015-01-01", | ||
"endDate": "2016-03-15", | ||
"summary": "", | ||
"highlights": [ | ||
"Troubleshoot software, hardware and networking issues over the phone", | ||
"Answer phone and email responses to the ITS Help Desk" | ||
] | ||
} | ||
], | ||
"volunteer": [ | ||
{ | ||
"organization": "Center for Renewable Energy and Island Sustainability", | ||
"website": "http://manoa.hawaii.edu/reis", | ||
"position": "Software Developer", | ||
"startDate": "2016-01-01", | ||
"endDate": "Present", | ||
"summary": "Lead developer for weather sensing project", | ||
"highlights": [ | ||
"Design firmware for distributed weather sensor network", | ||
"Maintain custom data collection and storage infrastructure" | ||
] | ||
}, | ||
{ | ||
"organization": "", | ||
"website": "", | ||
"position": "Professional organization involvement", | ||
"startDate": "", | ||
"endDate": "", | ||
"summary": "", | ||
"highlights": [ | ||
"Chair, ACM Manoa, 2016-Present", | ||
"Member, IEEE Student Branch, 2014-Present", | ||
"Webmaster/IT Officer, IEEE Student Branch, UH Manoa, 2012-2013" | ||
] | ||
} | ||
], | ||
"awards": [ | ||
{ | ||
"title": "B+ Scholarship", | ||
"date": "2013-Present", | ||
"awarder": "State of Hawaii", | ||
"summary": "Scholarships awarded to incoming freshmen and continuing students who complete a rigorous high school curriculum with a minimum overall GPA of 3.0 at a Hawai'i public school." | ||
}, | ||
{ | ||
"title": "First place", | ||
"date": "2015", | ||
"awarder": "University of Hawaii Micromouse Competition", | ||
"summary": "My team won first place in 2015. See my portfolio site for more details." | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"name": "Available upon request" | ||
} | ||
] | ||
} |
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,47 @@ | ||
<div style="background-color: var(--tf-page-bg-color)" class="bg-gradient py-3"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-4"> | ||
<img width="300px" src="{{ site.data.bio.basics.picture }}" class="d-block mx-auto rounded-circle"> | ||
</div> | ||
<div class="col-lg-8"> | ||
<h1 class="display-4 text-center">{{ site.data.bio.basics.name }}</h1> | ||
<p class="lead text-center">{{ site.data.bio.basics.label }}</p> | ||
<p class="lead">{{ site.data.bio.basics.summary }}</p> | ||
<hr class="my-4"> | ||
<p class="lead m-0"> | ||
Interests: | ||
{% for interest in site.data.bio.interests %} | ||
{{ interest.name }}{% if forloop.last != true %}, {% endif %} | ||
{% endfor %} | ||
</p> | ||
<hr class="my-4"> | ||
<div class="row"> | ||
|
||
{% if site.data.bio.basics.website %} | ||
{% capture url %}{{ site.data.bio.basics.website }}{% endcapture %} | ||
<div class="col text-center"> | ||
{% include about/social.html url=url name='house' %} | ||
</div> | ||
{% endif %} | ||
|
||
{% if site.data.bio.basics.email %} | ||
{% capture url %}mailto:{{ site.data.bio.basics.email }}{% endcapture %} | ||
<div class="col text-center"> | ||
{% include about/social.html url=url name='envelope' %} | ||
</div> | ||
{% endif %} | ||
|
||
{% for profile in site.data.bio.basics.profiles %} | ||
{% capture url %}{{ profile.url }}{% endcapture %} | ||
{% capture name %}{{ profile.network | downcase }}{% endcapture %} | ||
<div class="col text-center"> | ||
{% include about/social.html url=url name=name %} | ||
</div> | ||
{% endfor %} | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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,6 @@ | ||
<a href="{{ include.url }}" target="_blank"> | ||
<svg class="tf-social"> | ||
<use xlink:href="{{ '/img/bootstrap-icons.svg' | prepend: site.baseurl }}#{{- include.name -}}"/> | ||
</svg> | ||
<span>{{ include.label }}</span> | ||
</a> |
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,17 @@ | ||
<div class="col-md-6 col-lg-4" xmlns="http://www.w3.org/1999/html"> | ||
<div class="card h-100"> | ||
<div class="card-body"> | ||
<h5 class="card-title">{{ include.page.title }}</h5> | ||
<p class="card-text"><small class="text-muted">{{ include.page.date | date_to_string }}</small></p> | ||
<p class="card-text">{{ include.page.content | markdownify | strip_html | truncatewords: 40 }}</p> | ||
<p> | ||
{% for label in include.page.labels %} | ||
<span style="background-color: var(--tf-pill-bg)" class="badge rounded-pill">{{ label }}</span> | ||
{% endfor %} | ||
</p> | ||
</div> | ||
<div class="card-footer"> | ||
<div class="text-center"><a href="{% if page.essayurl %}{{ page.essayurl }}{% else %}{{ site.baseurl}}{{ include.page.url }}{% endif %}" class="btn btn-outline-dark">Read More</a></div> | ||
</div> | ||
</div> | ||
</div> |
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,26 @@ | ||
<div style="background-color: var(--bs-white)" class="bg-gradient py-3" id="essays"> | ||
<div class="container"> | ||
<div class="row mb-3"> | ||
<div class="col-md-6"> | ||
<h1 class="display-4 text-start">Essays</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="row g-3"> | ||
{% assign essay_pages = site.pages | where: "type", "essay" | sort: "date" | reverse %} | ||
{% for page in essay_pages %} | ||
{% unless page.draft %} | ||
{% include essays/essay-card.html page=page %} | ||
{% endunless %} | ||
{% if forloop.index == include.limit %} | ||
{% break %} | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
|
||
{% if essay_pages.size > include.limit %} | ||
<p class="text-center pt-4"><a href="{{ site.baseurl}}/essays/">See all {{ essay_pages.size }} essays</a></p> | ||
{% endif %} | ||
|
||
</div> | ||
</div> |
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,9 @@ | ||
<footer class="navbar navbar-expand navbar-light bg-light bg-gradient border-top"> | ||
<div class="container-fluid"> | ||
<div class="ms-auto"> | ||
<ul class="navbar-nav mb-2 mb-lg-0"> | ||
<small><a class="nav-link" href="https://techfolios.github.io">Made with Techfolios</a></small> | ||
</ul> | ||
</div> | ||
</div> | ||
</footer> |
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,12 @@ | ||
<header class="navbar navbar-expand navbar-light bg-light bg-gradient border-bottom"> | ||
<div class="container-fluid"> | ||
<a class="navbar-brand" href="{{ '/' | prepend: site.baseurl }}">{{ site.data.bio.basics.name }}</a> | ||
<div class="ms-auto"> | ||
<ul class="navbar-nav mb-2 mb-lg-0"> | ||
<a class="nav-link" href="{{ '/#projects' | prepend: site.baseurl }}">Projects</a> | ||
<a class="nav-link" href="{{ '/#essays' | prepend: site.baseurl }}">Essays</a> | ||
<a class="nav-link" href="{{ '/resume.html' | prepend: site.baseurl }}">Resume</a> | ||
</ul> | ||
</div> | ||
</div> | ||
</header> |
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,23 @@ | ||
<div class="card mb-3"> | ||
<div class="row g-0"> | ||
<div class="col-sm-6 col-md-4"> | ||
<img src="{{ site.baseurl }}/{{ include.page.image }}" height="225px" class="rounded-start"> | ||
</div> | ||
<div class="col-sm-6 col-md-8"> | ||
<div class="card-body"> | ||
<h5 class="card-title">{{ include.page.title }} <small class="text-muted float-end">{{ include.page.date }}</small></h5> | ||
<p class="card-text">{{ include.page.summary }}</p> | ||
<p> | ||
{% for label in include.page.labels %} | ||
<span style="background-color: var(--tf-pill-bg)" class="badge rounded-pill">{{ label }}</span> | ||
{% endfor %} | ||
</p> | ||
{% if page.projecturl %} | ||
<a href="{{ page.projecturl }}" class="btn btn-outline-dark">Project Site</a> | ||
{% else %} | ||
<a href="{{ site.baseurl}}{{ include.page.url }}" class="btn btn-outline-dark">Read More</a> | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
Oops, something went wrong.