Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

> Stay tuned...

## Dependencies

Depends on infrastructure deployed here: [`jakebrinkmann/aws-cloud-core`](https://github.com/jakebrinkmann/aws-cloud-core)

## Project setup
```
npm install
Expand Down Expand Up @@ -37,3 +41,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
* Icons CC-BY [datacenter](https://thenounproject.com/term/-/968729/)
* Icons CC-BY-4.0 [fa-icon](https://fontawesome.com)
* Theme BSD [Pure](https://purecss.io)

## TODO

- [ ] use Vue 3 and `vite` (instead of `vue-cli-service`)
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "Jake Brinkmann",
"tagline": "Full Stack Cloud Computing",
"job_searching": true,
"contact": {
"phone": "+1 (612) 426 - 1440",
"email": "jakebrinkmann@gmail.com",
Expand Down
19 changes: 16 additions & 3 deletions src/components/FootFoot.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
<template>
<div class="footer">
<p>‹/› with <span class="heart">♥</span>
from South Dakota © Jake Brinkmann IP, LLC
<br>
from South Dakota © Jake Brinkmann
</p>
<p id="BuildTime">{{buildTime}}</p>
<p>
Except where otherwise noted, content on this site is released under
<a href='https://creativecommons.org/licenses/by/4.0/'>CC-BY-4.0</a>
</p>
</div>
</template>

<script>
const FootFoot = { name: "FootFoot" };
const FootFoot = {
name: "FootFoot",
created() {
this.buildTime = new Date().toISOString()
}
};
export default FootFoot;
</script>

Expand Down Expand Up @@ -48,4 +55,10 @@ export default FootFoot;
float: left;
margin: 0 0.5em;
}

#BuildTime {
font-family: "Courier New", Courier, monospace;
color: #333333; /* Dark grey color */
padding: 5px;
}
</style>