Skip to content

Commit

Permalink
Add Jake Gyllenhaal info in data.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
thevahidal committed Dec 28, 2023
1 parent 92bcb86 commit d22f16e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 24 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ To customize your website, follow these steps:
- `image`: The file address of your avatar. Place your avatar inside the `dist/img/` folder (e.g., "me.jpeg" - Note that the `/dist/img/` address is not included)
- `theme`: Choose your website theme: "dark" or "light" (e.g., "dark")
- `primary_color`: Specify your website's primary color using a hexadecimal color code (e.g., "#00897b")
- text_align: Specify the text alignment for your website: "right", "left" or "center" (e.g., "center")

**Sections:**
You can add multiple sections based on your requirements. For example, you may want a section for your projects, another for your social media links, and another for your merchandise products. Each section is defined using `[[sections]]`.
Expand Down
45 changes: 21 additions & 24 deletions data.toml
Original file line number Diff line number Diff line change
@@ -1,36 +1,33 @@
name = "Vahid Al"
description = "Software Developer, Currently working on nothing"
keywords = "developer, python"
image = "me.jpeg"
name = "Jake Gyllenhaal"
description = "Accomplished actor, captivating with versatility and charisma."
keywords = "Jake Gyllenhaal, actor, filmography, awards, versatile performances, Hollywood"
image = "jake.webp"
theme = "dark"
primary_color = "#00897b"
primary_color = "#d81b60"
text_align = "center"

[[sections]]
title = "Projects"
description = "Here are some of my projects"
title = "Movies"
description = "Here are some of my movies"
[[sections.items]]
title = "Soul"
description = "An SQLite REST and Real-time server"
url = "https://github.com/thevahidal/soul"
title = "Nightcrawler"
description = "A mesmerizing thriller delving into the dark world of crime journalism"
url = "https://www.imdb.com/title/tt2872718/"
[[sections.items]]
title = "Novel"
description = "A collaborative storytelling"
url = "https://github.com/thevahidal/novel"
title = "Brokeback Mountain"
description = "A groundbreaking romantic drama challenging societal expectations"
url = "https://www.imdb.com/title/tt0388795/"
[[sections.items]]
title = "Bukowski"
description = "A human typewriter"
url = "https://github.com/thevahidal/bukowski"
[[sections.items]]
title = "Jake"
description = "Free one-link site generator hosted in your GitHub account"
url = "https://github.com/thevahidal/jake"
title = "Prisoners"
description = "A gripping thriller entangling a detective in a web of secrets during a kidnapping investigation"
url = "https://www.imdb.com/title/tt1392214/"

[[sections]]
title = "Links"
description = "Look for me on these websites"
[[sections.items]]
title = "GithHub"
url = "https://github.com/thevahidal"
title = "Instagram"
url = "https://www.instagram.com/jakegyllenhaal"
[[sections.items]]
title = "Linkedin"
url = "https://www.linkedin.com/in/thevahidal/"
title = "IMDb"
url = "https://www.imdb.com/name/nm0350453/"
1 change: 1 addition & 0 deletions dist/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
width: 100px;
height: 100px;
objet-fit: cover;
margin-bottom: var(--typography-spacing-vertical);
}

.section {
Expand Down
Binary file added dist/img/jake.webp
Binary file not shown.
Binary file removed dist/img/me.jpeg
Binary file not shown.
3 changes: 3 additions & 0 deletions script.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
:root {{
--primary: {data.get("primary_color", "#546e7a")};
}}
* {{
text-align: {data.get("text_align", "center")};
}}
"""
),
),
Expand Down

0 comments on commit d22f16e

Please sign in to comment.