-
Notifications
You must be signed in to change notification settings - Fork 1
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
e0433c7
commit 79aeef4
Showing
2 changed files
with
5 additions
and
3 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
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 |
---|---|---|
|
@@ -6,13 +6,15 @@ pub fn home() -> Markup { | |
html! { | ||
p{"Hi, I'm " (name) "!"} | ||
p{"Nice to meet you."} | ||
p{"This is my website. It's written in Rust using a HTML templating library called Maud. I think it's pretty neat."} | ||
p{"This is my website. It's written in Rust using a HTML templating library called Maud."} | ||
p{"I like making things that are accessible, testable, and performant."} | ||
p{ | ||
"My contact info is here." | ||
ul{ | ||
li{"Email: [email protected]"} | ||
li{"Phone: 702-285-7906"} | ||
li{"Github: " a href="https://github.com/tompridham"{"github.com/tompridham"}} | ||
li{"Linkedin: " a href="https://www.linkedin.com/in/tompridham/"{"linkedin.com/in/tompridham/"}} | ||
} | ||
} | ||
} | ||
|