-
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
5f59a7c
commit b0a5cae
Showing
8 changed files
with
56 additions
and
13 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
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
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,10 +1,39 @@ | ||
import RouteTemplate from 'ember-route-template'; | ||
import { LinkTo } from '@ember/routing'; | ||
import ArticleCard from '../components/article-card'; | ||
import articles from '../article-data'; | ||
|
||
let mostRecentPublishedArticle = articles.find((a) => a.published); | ||
|
||
export default RouteTemplate( | ||
<template> | ||
<h1>Sean's Adventures</h1> | ||
|
||
<p>Sean Massa discusses tech, organizations, ethics, and games.</p> | ||
</template> | ||
); | ||
|
||
<h2>Recent Blog Post</h2> | ||
|
||
<ArticleCard | ||
@article={{mostRecentPublishedArticle}} | ||
/> | ||
|
||
<p>See more at <LinkTo @route="blog">/blog</LinkTo>.</p> | ||
|
||
<h2>About Sean Massa</h2> | ||
<p> | ||
They are a(n): | ||
</p> | ||
|
||
<ul> | ||
<li>supporter of diversity and inclusion</li> | ||
<li>enthusiast of organizational structures</li> | ||
<li>software engineer with well over a decade of experience spanning .NET, Ruby/Rails, front-end javascript, Node.js, and various databases.</li> | ||
<li>community organizer of meetups, hackathons, and conferences</li> | ||
</ul> | ||
<p> | ||
Feel free to reach out to me about anything, especially if it's about my interests, on Mastodon at | ||
<a href="https://social.massalabs.com/@sean">@[email protected]</a>. | ||
</p> | ||
|
||
</template> | ||
); |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.