diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-12 13:43:11 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-12 13:43:11 +1000 |
| commit | 25895936f66ac50d27eaf9c45bcbb6833e52a033 (patch) | |
| tree | 10e32223a8a057fcd9215f055eadcd52fcd16d07 | |
| parent | 76fb4f98cac402bb03b030388fcec2f14eecd362 (diff) | |
Add <meta> image tags
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | index.html | 12 | ||||
| -rw-r--r-- | public/tilo.jpg | bin | 0 -> 289593 bytes | |||
| -rw-r--r-- | src/components/HelpModal.vue | 4 |
4 files changed, 15 insertions, 2 deletions
@@ -1,6 +1,7 @@ # Tilo A visual explorer for the biological Tree of Life. +[Available online](https://terryt.dev/tilo/). ## Project Overview @@ -7,6 +7,18 @@ <meta name="description" content="An online tool for visually exploring the biological Tree of Life"/> <link rel="icon" href="/favicon.png" /> <link rel="preload" href="/fonts/Ubuntu-Regular.woff2" as="font" type="font/woff2" crossorigin/> + <!-- Meta tags for Open Graph / Facebook --> + <meta property="og:type" content="website"> + <meta property="og:url" content="https://terryt.dev/tilo/"> + <meta property="og:title" content="Tilo: Interactive Tree of Life"> + <meta property="og:description" content="An online tool for visually exploring the biological Tree of Life"> + <meta property="og:image" content="https://terryt.dev/tilo/tilo.jpg"> + <!-- Meta tags for Twitter --> + <meta property="twitter:card" content="summary_large_image"> + <meta property="twitter:url" content="https://terryt.dev/tilo/"> + <meta property="twitter:title" content="Tilo: Interactive Tree of Life"> + <meta property="twitter:description" content="An online tool for visually exploring the biological Tree of Life"> + <meta property="twitter:image" content="https://terryt.dev/tilo/tilo.jpg"> </head> <body> <div id="app"></div> diff --git a/public/tilo.jpg b/public/tilo.jpg Binary files differnew file mode 100644 index 0000000..6595d7d --- /dev/null +++ b/public/tilo.jpg diff --git a/src/components/HelpModal.vue b/src/components/HelpModal.vue index f61c6b8..2c5ad41 100644 --- a/src/components/HelpModal.vue +++ b/src/components/HelpModal.vue @@ -385,7 +385,7 @@ <li> The UI was largely coded in <a href="https://www.typescriptlang.org/" :style="aStyles">Typescript</a>, - and built using the <a href="https://vuejs.org/" :style="aStyles">Vue</a> framework. + and built using the <a href="https://vuejs.org/" :style="aStyles">Vue</a> framework </li> <li> Tree data was processed using @@ -412,7 +412,7 @@ <li> Thanks to <a href="https://twitter.com/JosephusPaye" :style="aStyles">Josephus Paye II</a> - for helpful suggestions and clarifications. + for helpful suggestions and clarifications </li> </ul> </div> |
