From 0016ebebabc2783fb9363646c9beb99172ba19e2 Mon Sep 17 00:00:00 2001 From: Bobby Date: Thu, 13 Jul 2023 16:22:38 -0400 Subject: More branding updates --- README.md | 8 ++++---- middleware/globalmetamiddleware.py | 2 +- templates/userpages/home.html | 2 +- templates/userpages/partials/base.html | 4 ++-- users/forms.py | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4fdd8106..b225fb1a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# That Computer Scientist +# Shifoo (Previously _That Computer Scientist_) Source Code for my Personal Website. -- Visit [thatcomputerscientist.com](https://thatcomputerscientist.com) to take a look at the current build. +- Visit [shi.foo](https://shi.foo) to take a look at the current build. - Visit [preview.thatcomputerscientist.com](https://preview.thatcomputerscientist.com) to see a instant live deployment of changes whenever I start changing something on my local machine. (_Availability of this server is not guaranteed as it is only active whenever I am working on the project_. Also, sometimes I keep the project loaded in my code editor, while being idle or doing something else – the link is viewable during this time as well.) ## Screenshot -![Live Screenshot](https://thatcomputerscientist.com/ignis/screenshot) +![Live Screenshot](https://shi.foo/ignis/screenshot) -> _Screenshot served live from [thatcomputerscientist.com](https://thatcomputerscientist.com)'s server. For efficiency purposes, the screenshot is taken once per build and is served from the server's cache. The screenshot is updated whenever I push changes to this repository. Screenshots will generally be updated within 20 seconds after all GitHub Actions Workflows have completed._ +> _Screenshot served live from [shi.foo](https://shi.foo)'s server. For efficiency purposes, the screenshot is taken once per build and is served from the server's cache. The screenshot is updated whenever I push changes to this repository. Screenshots will generally be updated within 20 seconds after all GitHub Actions Workflows have completed._ ## Specifications - Server: [Nginx](https://www.nginx.com/) diff --git a/middleware/globalmetamiddleware.py b/middleware/globalmetamiddleware.py index 841b8bf1..6908d570 100644 --- a/middleware/globalmetamiddleware.py +++ b/middleware/globalmetamiddleware.py @@ -7,7 +7,7 @@ class GlobalMetaMiddleware: def __call__(self, request): request.meta = { # Default General Meta Tags - 'description': 'Welcome to the home of That Computer Scientist. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences.', + 'description': 'Welcome to the home of Shifoo. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences.', 'image': 'https://shi.foo/static/images/logo/logo.png', 'url': '{}://{}{}'.format(request.scheme, request.get_host(), request.path), diff --git a/templates/userpages/home.html b/templates/userpages/home.html index 0daa5d9c..68a13b2c 100644 --- a/templates/userpages/home.html +++ b/templates/userpages/home.html @@ -2,7 +2,7 @@

Welcome to {{ username }}'s {{ title }}

- Powered by That Computer Scientist – © 2022 + Powered by Shifoo – © 2022
{% endblock %} diff --git a/templates/userpages/partials/base.html b/templates/userpages/partials/base.html index 051dd3c4..11c94cf1 100644 --- a/templates/userpages/partials/base.html +++ b/templates/userpages/partials/base.html @@ -7,9 +7,9 @@ - {{ username }}'s {{ title }} | That Computer Scientist + {{ username }}'s {{ title }} | Shifoo diff --git a/users/forms.py b/users/forms.py index a78b26f5..e618cec8 100644 --- a/users/forms.py +++ b/users/forms.py @@ -102,7 +102,7 @@ class RegisterForm(forms.Form): 'domain': request.get_host(), }) message = strip_tags(message) - # send_mail(subject, message, 'That Computer Scientist <' + settings.EMAIL_HOST_USER + '>', [user.email], fail_silently=False) + # send_mail(subject, message, 'Shifoo <' + settings.EMAIL_HOST_USER + '>', [user.email], fail_silently=False) if (send_email(sender='noreply@thatcomputerscientist.com', sender_name='Shifoo', recipient=user.email, subject=subject, body_html=message, body_text=message)): return user else: -- cgit v1.2.3