From 358321f20a08a8d500ffbc5c2e443875ecf9ee50 Mon Sep 17 00:00:00 2001 From: Asara Date: Sun, 28 Jul 2019 02:32:20 -0400 Subject: [PATCH] Add publish time, add sources to about page --- public/index.html | 2 +- public/manifest.json | 6 +++--- src/components/Post.js | 1 + src/components/PostList.js | 1 + src/components/User.js | 1 + src/static/about.md | 3 +++ 6 files changed, 10 insertions(+), 4 deletions(-) diff --git a/public/index.html b/public/index.html index 1c852f1..7c54ef8 100644 --- a/public/index.html +++ b/public/index.html @@ -23,7 +23,7 @@ - React App + sudoscientist:~# diff --git a/public/manifest.json b/public/manifest.json index 1f2f141..fffa3bf 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "React App", - "name": "Create React App Sample", + "short_name": "sudoscientist", + "name": "sudoscientist~#", "icons": [ { "src": "favicon.ico", @@ -10,6 +10,6 @@ ], "start_url": ".", "display": "standalone", - "theme_color": "#000000", + "theme_color": "#EEEEEE", "background_color": "#ffffff" } diff --git a/src/components/Post.js b/src/components/Post.js index 3265260..777a6c1 100644 --- a/src/components/Post.js +++ b/src/components/Post.js @@ -31,6 +31,7 @@ class Post extends React.Component {

{post.title}

By {post.author}

+

Posted {post.time_published}

diff --git a/src/components/PostList.js b/src/components/PostList.js index c028409..298e527 100644 --- a/src/components/PostList.js +++ b/src/components/PostList.js @@ -21,6 +21,7 @@ class PostList extends React.Component {

{post.title}

By {post.author}

+

Posted {post.time_published}

diff --git a/src/components/User.js b/src/components/User.js index 10f3d5f..4fbb0a8 100644 --- a/src/components/User.js +++ b/src/components/User.js @@ -25,6 +25,7 @@ class User extends React.Component {

{post.title}

By {post.author}

+

Posted {post.time_published}

diff --git a/src/static/about.md b/src/static/about.md index 0d73e91..0eed2a7 100644 --- a/src/static/about.md +++ b/src/static/about.md @@ -2,3 +2,6 @@ This is Asara, and this is my personal blog. It will primarily post about technology, personal projects, and other sudo-scientific and sudo-philosophical ramblings. + +The backend for this blog is written in golang and the source can be [found here](https://git.minhas.io/Asara/sudoscientist-go-backend). +The frontend for this blog is written using react-redux and can be [found here](https://git.minhas.io/Asara/sudoscientist-go-backend).