More progress
This commit is contained in:
parent
d9accc07c5
commit
3ac60346d4
29 changed files with 1689 additions and 1193 deletions
6
.eleventy.js
Normal file
6
.eleventy.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
module.exports = function(eleventyConfig) {
|
||||
eleventyConfig.addCollection(
|
||||
"pinned",
|
||||
collection => collection.getAllSorted().filter(item => item.data.pinned),
|
||||
);
|
||||
};
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -43,4 +43,4 @@ jspm_packages
|
|||
.node_repl_history
|
||||
|
||||
# Ignore build
|
||||
/dist
|
||||
/_site
|
||||
|
|
22
_data/navigation.json
Normal file
22
_data/navigation.json
Normal file
|
@ -0,0 +1,22 @@
|
|||
[
|
||||
{
|
||||
"title": "Welcome",
|
||||
"url": "/"
|
||||
},
|
||||
{
|
||||
"title": "Repos",
|
||||
"url": "/repos/"
|
||||
},
|
||||
{
|
||||
"title": "Work",
|
||||
"url": "/work-history/"
|
||||
},
|
||||
{
|
||||
"title": "Volunteering",
|
||||
"url": "/volunteering/"
|
||||
},
|
||||
{
|
||||
"title": "About | Uses",
|
||||
"url": "/uses/"
|
||||
}
|
||||
]
|
|
@ -1,3 +1,8 @@
|
|||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,15 +9,65 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul>
|
||||
{%- for content in collections.all -%}
|
||||
<li>
|
||||
<a href="{{content.url}}"{% if page.url == content.url %} aria-current="page"{% endif %}>
|
||||
{{ content.data.title }}
|
||||
</a>
|
||||
</li>
|
||||
{%- endfor -%}
|
||||
</ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
|
||||
{%- for navItem in navigation -%}
|
||||
<a
|
||||
href="{{navItem.url}}"
|
||||
class="{% if page.url == navItem.url %}border-indigo-500 text-gray-900{% else %}border-transparent text-gray-500{% endif %} inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
{% if page.url == navItem.url %}aria-current="page"{% endif %}
|
||||
>
|
||||
{{navItem.title}}
|
||||
</a>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
|
39
_includes/pinned.njk
Normal file
39
_includes/pinned.njk
Normal file
|
@ -0,0 +1,39 @@
|
|||
{% include "base-header.html" %}
|
||||
|
||||
<main class="mt-12 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="relative max-w-lg mx-auto divide-y-2 divide-gray-200 lg:max-w-7xl">
|
||||
<div>
|
||||
<h2 class="text-3xl tracking-tight font-extrabold text-gray-900 sm:text-4xl">
|
||||
{{ title }}
|
||||
</h2>
|
||||
<div class="mt-3 text-xl text-gray-500 sm:mt-4">
|
||||
{{ content | safe }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-12 grid gap-16 pt-12 lg:grid-cols-3 lg:gap-x-5 lg:gap-y-12">
|
||||
{%- for content in collections.pinned -%}
|
||||
<div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
{{ content.data.category }}
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="{{ content.data.url }}" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
{{ content.data.title }}
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
{{ content.data.description }}
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
{% include "base-footer.html" %}
|
||||
|
252
_site/index.html
252
_site/index.html
|
@ -9,93 +9,191 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
aria-current="page"
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="max-w-3x1 mx-auto mb-5">
|
||||
<div class="-ml-2 mt-8 flex flex-wrap items-baseline">
|
||||
<h1 class="ml-8 mt-2 text-lg font-medium text-gray-900">
|
||||
<main class="mt-12 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
||||
<div class="relative max-w-lg mx-auto divide-y-2 divide-gray-200 lg:max-w-7xl">
|
||||
<div>
|
||||
<h2 class="text-3xl tracking-tight font-extrabold text-gray-900 sm:text-4xl">
|
||||
Welcome
|
||||
</h1>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<p>Home</p>
|
||||
</h2>
|
||||
<div class="mt-3 text-xl text-gray-500 sm:mt-4">
|
||||
<p>Homepage content goes here!</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mt-12 grid gap-16 pt-12 lg:grid-cols-3 lg:gap-x-5 lg:gap-y-12"><div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
Volunteering
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
Code 2 College
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
Interview preparation, event hosting and curriculum planning.
|
||||
</p>
|
||||
</a>
|
||||
</div><div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
Repos
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
team-cli
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
Automate all the things with a team-centric CLI. Abstract away annoying day-to-day tasks and eliminate tribal team knowledge by building your team their very own CLI.
|
||||
</p>
|
||||
</a>
|
||||
</div><div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
Repos
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
sortable-recipes
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
A sample project for my EmberConf 2020 talk. Leverages Ember Octane and is fully test driven. Includes the RevealJS presentation and a simple Python backend.
|
||||
</p>
|
||||
</a>
|
||||
</div><div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
Work History
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
(Aug 2020 - Present) Working with Texas State Technical College (TSTC) at SkillsEngine to connect employers, educators and students in new ways through technology.
|
||||
</p>
|
||||
</a>
|
||||
</div><div>
|
||||
<div>
|
||||
<a href="#" class="inline-block">
|
||||
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-sm font-medium bg-indigo-100 text-indigo-800">
|
||||
Repos
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<a href="" class="block mt-4">
|
||||
<p class="text-xl font-semibold text-gray-900">
|
||||
ember-select-light
|
||||
</p>
|
||||
<p class="mt-3 text-base text-gray-500">
|
||||
Ember Select Light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.
|
||||
</p>
|
||||
</a>
|
||||
</div></div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/" aria-current="page">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -176,6 +190,11 @@ blabbercomic(messages, config);
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/" aria-current="page">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -85,16 +99,12 @@
|
|||
<h1 class="ml-8 mt-2 text-lg font-medium text-gray-900">
|
||||
ember-select-light
|
||||
</h1>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in </p>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in Repos</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<blockquote>
|
||||
<p>Ember Select Light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.</p>
|
||||
</blockquote>
|
||||
<!--more-->
|
||||
<p><a href="https://github.com/ember-a11y/ember-select-light">Fork from Github</a></p>
|
||||
<p><a href="https://github.com/ember-a11y/ember-select-light">Fork from Github</a></p>
|
||||
<h1>Ember-Select-Light</h1>
|
||||
<p><img src="https://github.com/ember-a11y/ember-select-light/workflows/CI/badge.svg?branch=main" alt="CI"> <img src="https://camo.githubusercontent.com/d4e0f63e9613ee474a7dfdc23c240b9795712c96/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5052732d77656c636f6d652d627269676874677265656e2e737667" alt="PRs Welcome"> <img src="https://camo.githubusercontent.com/890acbdcb87868b382af9a4b1fac507b9659d9bf/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e737667" alt="License: MIT"> <a href="https://badge.fury.io/js/ember-select-light"><img src="https://d25lcipzij17d.cloudfront.net/badge.svg?id=js&type=6&v=2.0.0&x2=0" alt="npm package"></a> <a href="https://emberobserver.com/addons/ember-select-light"><img src="https://emberobserver.com/badges/ember-select-light.svg" alt="Ember Observer"></a></p>
|
||||
<p>Ember-Select-Light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.</p>
|
||||
|
@ -163,6 +173,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/" aria-current="page">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -145,6 +159,11 @@ let myQ = new Query(someJsonData)
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/" aria-current="page">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -132,6 +146,11 @@ $ npm run lint
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/" aria-current="page">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -85,16 +99,12 @@
|
|||
<h1 class="ml-8 mt-2 text-lg font-medium text-gray-900">
|
||||
sortable-recipes
|
||||
</h1>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in </p>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in Repos</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<blockquote>
|
||||
<p>A sample project for my EmberConf 2020 talk. Leverages Ember Octane and is fully test driven. Includes the RevealJS presentation and a simple Python backend.</p>
|
||||
</blockquote>
|
||||
<!--more-->
|
||||
<p><a href="https://gitlab.com/gaiety/sortable-recipes">Fork from Gitlab</a></p>
|
||||
<p><a href="https://gitlab.com/gaiety/sortable-recipes">Fork from Gitlab</a></p>
|
||||
<h1><img src="https://assets.gitlab-static.net/uploads/-/system/project/avatar/15989776/Screen_Shot_2019-12-21_at_3.35.42_PM.png?width=64" alt=""> Sortable-Recipes</h1>
|
||||
<p><a href="https://gaiety.life/a11y-first-and-everyone-wins"><img src="https://gaiety.life/images/uploads/a11yfirst.png" alt=""> Watch the talk here</a></p>
|
||||
<h2>Getting Started</h2>
|
||||
|
@ -109,6 +119,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/" aria-current="page">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -124,6 +138,11 @@ svgdir2sprite('./src/svgs', './build/spritesheet.svg');
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/" aria-current="page">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -85,16 +99,12 @@
|
|||
<h1 class="ml-8 mt-2 text-lg font-medium text-gray-900">
|
||||
team-cli
|
||||
</h1>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in </p>
|
||||
<p class="ml-2 mt-1 text-sm text-gray-500 truncate">in Repos</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<blockquote>
|
||||
<p>Automate all the things with a team-centric CLI. Abstract away annoying day-to-day tasks and eliminate tribal team knowledge by building your team their very own CLI.</p>
|
||||
</blockquote>
|
||||
<!--more-->
|
||||
<p><a href="https://github.com/q2ebanking/team-cli">Fork on Github</a></p>
|
||||
<p><a href="https://github.com/q2ebanking/team-cli">Fork on Github</a></p>
|
||||
<h1>team-cli</h1>
|
||||
<p><a href="https://badge.fury.io/js/team-cli"><img src="https://badge.fury.io/js/team-cli.svg" alt="npm version"></a></p>
|
||||
<p>Automate all the things with a team-centric CLI. Abstract away annoying day-to-day tasks and eliminate tribal team knowledge by building your team their very own CLI.</p>
|
||||
|
@ -180,6 +190,11 @@ module.exports = {
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/" aria-current="page">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -102,6 +116,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/" aria-current="page">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -101,6 +115,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/" aria-current="page">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -105,6 +119,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/" aria-current="page">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -106,6 +120,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/" aria-current="page">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -103,6 +117,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/" aria-current="page">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -105,6 +119,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/" aria-current="page">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -108,6 +122,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/" aria-current="page">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -107,6 +121,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -9,72 +9,86 @@
|
|||
|
||||
<body class="bg-gray-100">
|
||||
<header>
|
||||
<nav>
|
||||
<ul><li>
|
||||
<a href="/work-history/antharia/">
|
||||
Web Design & Dev Intern at Antharia
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/cyto-communications/">
|
||||
Interactive Technologies Lead & Web Admin at Cyto Communications
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/eyemaginations/">
|
||||
Senior Web Engineer at Eyemaginations
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/theseed/">
|
||||
Austin Give Camp - The SEED
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/json-query-chain/">
|
||||
json-query-chain
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/blabber-comic/">
|
||||
blabber-comic
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/code2college/">
|
||||
Code 2 College
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/svgdir2sprite/">
|
||||
svgdir2sprite
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/my_spells/">
|
||||
my_spells
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/volunteering/gabriellas-smile-foundation/">
|
||||
Gabriella’s Smile Foundation
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/q2/">
|
||||
Developer III at Q2ebanking
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/team-cli/">
|
||||
team-cli
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/allovue/">
|
||||
Software Engineer at Allovue
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/sortable-recipes/">
|
||||
sortable-recipes
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/work-history/skillsengine/" aria-current="page">
|
||||
Lead Full-Stack Software Engineer at SkillsEngine
|
||||
</a>
|
||||
</li><li>
|
||||
<a href="/repos/ember-select-light/">
|
||||
ember-select-light
|
||||
</a>
|
||||
</li></ul>
|
||||
<nav class="bg-white shadow">
|
||||
<div class="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
|
||||
<div class="relative flex justify-between h-16">
|
||||
<div class="absolute inset-y-0 left-0 flex items-center sm:hidden">
|
||||
<!-- Mobile menu button -->
|
||||
<button class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false">
|
||||
<span class="sr-only">Open main menu</span>
|
||||
<!-- Icon when menu is closed. -->
|
||||
<!--
|
||||
Heroicon name: menu
|
||||
|
||||
Menu open: "hidden", Menu closed: "block"
|
||||
-->
|
||||
<svg class="block h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
|
||||
</svg>
|
||||
<!-- Icon when menu is open. -->
|
||||
<!--
|
||||
Heroicon name: x
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<svg class="hidden h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
<div class="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
|
||||
<div class="flex-shrink-0 flex items-center">
|
||||
<img class="h-12 w-12 rounded-full w-auto" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
|
||||
</div>
|
||||
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"><a
|
||||
href="/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Welcome
|
||||
</a><a
|
||||
href="/repos/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Repos
|
||||
</a><a
|
||||
href="/work-history/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Work
|
||||
</a><a
|
||||
href="/volunteering/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
Volunteering
|
||||
</a><a
|
||||
href="/uses/"
|
||||
class="border-transparent text-gray-500 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium"
|
||||
|
||||
>
|
||||
About | Uses
|
||||
</a></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--
|
||||
Mobile menu, toggle classes based on menu state.
|
||||
|
||||
Menu open: "block", Menu closed: "hidden"
|
||||
-->
|
||||
<div class="hidden sm:hidden">
|
||||
<div class="pt-2 pb-4 space-y-1">
|
||||
<!-- Current: "bg-indigo-50 border-indigo-500 text-indigo-700", Default: "border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700" -->
|
||||
<a href="#" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Dashboard</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Team</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Projects</a>
|
||||
<a href="#" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Calendar</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
@ -90,12 +104,7 @@
|
|||
</div>
|
||||
<div class="bg-white overflow-hidden shadow sm:rounded-lg">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<blockquote>
|
||||
<p>(Aug 2020 - Present)</p>
|
||||
<p>Working with Texas State Technical College (TSTC) at SkillsEngine to connect employers, educators and students in new ways through technology.</p>
|
||||
</blockquote>
|
||||
<!--more-->
|
||||
<h1>Lead Full-Stack Software Engineer at SkillsEngine</h1>
|
||||
<h1>Lead Full-Stack Software Engineer at SkillsEngine</h1>
|
||||
<p>Working with <a href="https://www.tstc.edu/">Texas State Technical College (TSTC)</a> at <a href="https://skillsengine.com/">SkillsEngine</a> to connect employers, educators and students in new ways through technology. My hope in this role is to build software that matters to real people giving students a strong start to their career at places they'll be happier to work at.</p>
|
||||
<p>Expect more Ember, community outreach, talks and open source work as I'm able. More updates soon to come!</p>
|
||||
|
||||
|
@ -103,6 +112,11 @@
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<footer class="mt-12 max-w-7xl mx-auto py-12 px-4 sm:px-6 md:flex md:items-center md:justify-between lg:px-8">
|
||||
<div class="text-gray-500">
|
||||
Built in <a href="https://www.11ty.dev/">Eleventy</a> with <a href="https://tailwindui.com/">Tailwind UI</a>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
4
index.md
4
index.md
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
layout: layout.njk
|
||||
layout: pinned.njk
|
||||
title: Welcome
|
||||
eleventyExcludeFromCollections: true
|
||||
---
|
||||
|
||||
Home
|
||||
Homepage content goes here!
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: "ember-select-light"
|
||||
category: Repos
|
||||
title: ember-select-light
|
||||
description: Ember Select Light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.
|
||||
date: 2020-11-05
|
||||
pinned: true
|
||||
---
|
||||
|
||||
> Ember Select Light is an Ember Addon focused on simplicity. Just powerful enough to offer expected baseline functionality while being easy to implement, style, and make accessible.
|
||||
|
||||
<!--more-->
|
||||
|
||||
[Fork from Github](https://github.com/ember-a11y/ember-select-light)
|
||||
|
||||
# Ember-Select-Light
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: "sortable-recipes"
|
||||
category: Repos
|
||||
title: sortable-recipes
|
||||
description: A sample project for my EmberConf 2020 talk. Leverages Ember Octane and is fully test driven. Includes the RevealJS presentation and a simple Python backend.
|
||||
date: 2020-03-21
|
||||
pinned: true
|
||||
---
|
||||
|
||||
> A sample project for my EmberConf 2020 talk. Leverages Ember Octane and is fully test driven. Includes the RevealJS presentation and a simple Python backend.
|
||||
|
||||
<!--more-->
|
||||
|
||||
[Fork from Gitlab](https://gitlab.com/gaiety/sortable-recipes)
|
||||
|
||||
#  Sortable-Recipes
|
||||
|
|
|
@ -1,13 +1,11 @@
|
|||
---
|
||||
title: "team-cli"
|
||||
category: Repos
|
||||
title: team-cli
|
||||
description: Automate all the things with a team-centric CLI. Abstract away annoying day-to-day tasks and eliminate tribal team knowledge by building your team their very own CLI.
|
||||
date: 2019-09-01
|
||||
pinned: true
|
||||
---
|
||||
|
||||
> Automate all the things with a team-centric CLI. Abstract away annoying day-to-day tasks and eliminate tribal team knowledge by building your team their very own CLI.
|
||||
|
||||
<!--more-->
|
||||
|
||||
[Fork on Github](https://github.com/q2ebanking/team-cli)
|
||||
|
||||
# team-cli
|
||||
|
|
|
@ -1,16 +1,11 @@
|
|||
---
|
||||
category: "Work History"
|
||||
title: "Lead Full-Stack Software Engineer at SkillsEngine"
|
||||
category: Work History
|
||||
title: Lead Full-Stack Software Engineer at SkillsEngine
|
||||
description: (Aug 2020 - Present) Working with Texas State Technical College (TSTC) at SkillsEngine to connect employers, educators and students in new ways through technology.
|
||||
date: 2020-08-01
|
||||
pinned: true
|
||||
---
|
||||
|
||||
> (Aug 2020 - Present)
|
||||
>
|
||||
> Working with Texas State Technical College (TSTC) at SkillsEngine to connect employers, educators and students in new ways through technology.
|
||||
|
||||
<!--more-->
|
||||
|
||||
# Lead Full-Stack Software Engineer at SkillsEngine
|
||||
|
||||
Working with [Texas State Technical College (TSTC)](https://www.tstc.edu/) at [SkillsEngine](https://skillsengine.com/) to connect employers, educators and students in new ways through technology. My hope in this role is to build software that matters to real people giving students a strong start to their career at places they'll be happier to work at.
|
||||
|
|
Loading…
Add table
Reference in a new issue