Skip to content

Commit d460f5e

Browse files
committed
feat: add buildtime to footer
1 parent ff44c24 commit d460f5e

File tree

3 files changed

+25
-3
lines changed

3 files changed

+25
-3
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
> Stay tuned...
66
7+
## Dependencies
8+
9+
Depends on infrastructure deployed here: [`jakebrinkmann/aws-cloud-core`](https://github.com/jakebrinkmann/aws-cloud-core)
10+
711
## Project setup
812
```
913
npm install
@@ -37,3 +41,7 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
3741
* Icons CC-BY [datacenter](https://thenounproject.com/term/-/968729/)
3842
* Icons CC-BY-4.0 [fa-icon](https://fontawesome.com)
3943
* Theme BSD [Pure](https://purecss.io)
44+
45+
## TODO
46+
47+
- [ ] use Vue 3 and `vite` (instead of `vue-cli-service`)

employment_history.json renamed to src/assets/data/employment_history.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "Jake Brinkmann",
33
"tagline": "Full Stack Cloud Computing",
4+
"job_searching": true,
45
"contact": {
56
"phone": "+1 (612) 426 - 1440",
67
"email": "[email protected]",

src/components/FootFoot.vue

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
<template>
22
<div class="footer">
33
<p>‹/› with <span class="heart">♥</span>
4-
from South Dakota © Jake Brinkmann IP, LLC
5-
<br>
4+
from South Dakota © Jake Brinkmann
5+
</p>
6+
<p id="BuildTime">{{buildTime}}</p>
7+
<p>
68
Except where otherwise noted, content on this site is released under
79
<a href='https://creativecommons.org/licenses/by/4.0/'>CC-BY-4.0</a>
810
</p>
911
</div>
1012
</template>
1113

1214
<script>
13-
const FootFoot = { name: "FootFoot" };
15+
const FootFoot = {
16+
name: "FootFoot",
17+
created() {
18+
this.buildTime = new Date().toISOString()
19+
}
20+
};
1421
export default FootFoot;
1522
</script>
1623

@@ -48,4 +55,10 @@ export default FootFoot;
4855
float: left;
4956
margin: 0 0.5em;
5057
}
58+
59+
#BuildTime {
60+
font-family: "Courier New", Courier, monospace;
61+
color: #333333; /* Dark grey color */
62+
padding: 5px;
63+
}
5164
</style>

0 commit comments

Comments
 (0)