-
-
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
1 parent
47ec3e2
commit bb5d062
Showing
3 changed files
with
25 additions
and
21 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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"metaTitle": "Andrei Jiroh Halili", | ||
"metaDescription": "My meta description.", | ||
"name": "Andrei Jiroh's projects", | ||
"theme": "glitch", | ||
"avatarImage": "https://cdn.glitch.com/560ed5ed-9d00-433a-9ff9-7750d79d13da%2FGlitch_TeamAvatar.png?v=1624643105812", | ||
"metaTitle": "Projects by Andrei Jiroh Halili", | ||
"metaDescription": "Explore the projects built and contributed by Andrei Jiroh Halili.", | ||
"name": "~ajhalili2006's projects", | ||
"bio": "Explore the projects I built and contributed over the years.", | ||
"theme": "menu", | ||
"avatarImage": "https://gravatar.com/avatar/350eb4fd6db0b85e7d0d78e08b9557a7?size=512", | ||
"links": [ | ||
{ | ||
"url": "https://glitch.new/links", | ||
|
@@ -12,35 +13,35 @@ | |
"altText": "Glitch blue generative art" | ||
}, | ||
{ | ||
"url": "https://glitch.com/edit/#!/glitch-in-bio?path=README.md", | ||
"url": "https://github.com/andreijiroh-dev/glitchy-portfolio", | ||
"text": "View source! Check out the code to see how it's built.", | ||
"img": "" | ||
}, | ||
{ | ||
"url": "https://www.glitch.com/", | ||
"text": "Built by and on Glitch, the easiest way to build the web.", | ||
"url": "https://links.andreijiroh.dev", | ||
"text": "Looking for anything else?", | ||
"img": "https://cdn.glitch.me/efc5414a-882b-4708-af81-8461abbc1a82%2Fglitchdarkpinks.png?v=1634289859236" | ||
} | ||
], | ||
"social": { | ||
"glitch": "https://glitch.com/", | ||
"glitch": "https://glitch.com/@ajhalili2006", | ||
"arena": "", | ||
"bandcamp": "", | ||
"cohost": "", | ||
"dev": "https://dev.to/glitch", | ||
"facebook": "", | ||
"github": "https://github.com/glitchdotcom", | ||
"gitlab": "", | ||
"github": "https://github.com/ajhalili2006", | ||
"gitlab": "https://mau.dev/ajhalili2006", | ||
"hashnode": "", | ||
"instagram": "", | ||
"keybase": "", | ||
"kofi": "", | ||
"letterboxd": "", | ||
"linkedin": "https://www.linkedin.com/company/fog-creek-software", | ||
"mastodon": "https://mastodon.social/@glitchdotcom", | ||
"medium": "", | ||
"linkedin": "https://www.linkedin.com/in/ajhalili2006", | ||
"mastodon": "https://tilde.zone/@ajhalili2006", | ||
"medium": "https://ajhalili2006.medium.com", | ||
"onlyfans": "", | ||
"patreon": "", | ||
"patreon": "https://patreon.com/ajhalili2006", | ||
"pinboard": "", | ||
"pinterest": "", | ||
"podcast": "", | ||
|
@@ -51,8 +52,8 @@ | |
"twitter": "https://twitter.com/glitch", | ||
"twitch": "", | ||
"tiktok": "", | ||
"tumblr": "", | ||
"youtube": "https://www.youtube.com/c/GlitchDotCom", | ||
"email": "[email protected]" | ||
"tumblr": "https://tumblr.com/ajhalili2006", | ||
"youtube": "https://www.youtube.com/@ajhalili2006", | ||
"email": "[email protected]" | ||
} | ||
} |
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,9 +1,12 @@ | ||
import { html } from "lighterhtml"; | ||
import settings from "../settings.json"; | ||
|
||
export const renderHeader = html.node`<div> | ||
export const renderHeader = html.node` | ||
<div> | ||
<div class='avatar-container'> | ||
<img src='${settings.avatarImage}' class='avatar' alt='${settings.name}' /> | ||
</div> | ||
<h1>${settings.name}</h1> | ||
</div>`; | ||
</div> | ||
<div><p>${settings.bio}</p></div> | ||
`; |