adding pronouns and fixing readme, also removing more css that is not needed

This commit is contained in:
JesseBot 2022-10-06 15:58:12 +02:00
parent a078b4939f
commit 15607c3c49
5 changed files with 56 additions and 58 deletions

View file

@ -29,8 +29,7 @@ Under the Hood
2. Install missing libraries if any: `pip3.10 install -r requirements.txt`
3. You can configure everything (e.g. website title, your photo, quote, etc)
by renaming `config/config.yaml.sample` to `config.yaml` and replacing all
the sample data with your own real data.
by editing `config.yaml` and replacing all the Jesse data with your own.
5. All changes to HTML, CSS, and Python, or your core YAML will require a
restart of gunicorn or a rebuild of the docker container.

View file

@ -1,8 +1,10 @@
---
# favicon, can take any image type
favicon: 'favicon.ico'
# URL to the website
website_url: 'https://jessebot.work'
# domain name, or whatever you want the tab in the browser to say
website_title: 'jessebot.work'
website_title: "Jesse's resume"
# set to false to remove fork me banner in uppper right corner
fork_me: true

View file

@ -14,7 +14,7 @@
| #3d3d3d | Dash-unit and half-unit Section |
| #262626 | Footer |
| #fa1d2d | Red - Used in selectors and paragraphs |
| #b2c831 | Green - Used in titles, badges |
| #b2c831 | Green - Used in titles |
| #bdbdbd | Font color |
| #ffffff | Font color |
*/
@ -59,12 +59,6 @@ h5 {
/***********BLOCKS & WRAPS***********/
.aboutText {
padding-left: 10px;
padding-right: 5px;
padding-bottom: 10px;
}
.main-img {
box-shadow: 0 6px 12px rgba(0,0,0,.175);
margin-top: 18px;
@ -78,7 +72,7 @@ h5 {
background-clip: padding-box;
}
/* ----------------- Dash Unit ----------------- */
/* ----------------------- Dash Unit -------------------------- */
.dash-unit {
margin-bottom: 30px;
padding-bottom: 10px;
@ -98,7 +92,7 @@ h5 {
}
.dash-unit:hover {
background-color: #4f4f4f;
background-color: #3a3a3a;
-moz-box-shadow: 3px 3px 2px 0px #151515;
-webkit-box-shadow: 3px 3px 2px 0px #151515;
box-shadow: 3px 3px 2px 0px #151515;
@ -185,7 +179,7 @@ h5 {
padding-left: 5px;
margin-top: 2px;
font-size: 13px;
font-weight:lighter;
font-weight: lighter;
line-height: 1;
letter-spacing: 0px;
color: #fff;
@ -197,7 +191,7 @@ h5 {
margin-bottom: 30px;
padding-bottom: 4px;
border: 1px solid #383737;
background-image:url('../images/sep-half.png');
background-image: url('../images/sep-half.png');
background-color: #3d3d3d;
color: white;
height: 130px;
@ -220,10 +214,10 @@ h5 {
.half-unit bold{
font-family: 'Open Sans', sans-serif;
font-size:26px;
font-weight:bold;
color:#fff;
vertical-align:middle;
font-size: 26px;
font-weight: bold;
color: #fff;
vertical-align: middle;
}
.half-unit dtitle {
@ -285,13 +279,6 @@ h5 {
color: #b2c831;
}
.text p {
font-family: 'Open Sans', sans-serif;
margin-left: 8px;
font-size: 14px;
line-height: 18px;
}
.text grey {
font-size: 11px;
color: silver;

View file

@ -8,13 +8,13 @@
<meta name="author" content="Jesse Hitch">
<meta name="theme-color" content="#1f1f1f" />
<link rel="icon" type="image/x-icon" href="/static/img/{{config_vars['favicon']}}">
<meta property="og:url" content="https://jessebot.work">
<meta property="og:url" content="{{ config_vars['website_url'] }}">
<meta property="og:image" content="/static/img/{{config_vars['image']}}">
<meta property="og:title" content="{{config_vars['website_title']}}">
<meta property="og:description" content="Resume website for {{config_vars['name']}}">
<meta property="og:type" content="profile">
<title>{{config_vars['website_title']}}</title>
<title>{{ config_vars['website_title'] }}</title>
<!-- Custom styles for this template -->
<link href="/static/css/main.css" rel="stylesheet">

View file

@ -17,6 +17,16 @@
data-toggle="tooltip" data-placement="bottom"
title="{{ config_vars['name'] }}">
<br />
<dtitle>
<a href="https://pronouns.org/what-and-why"
class="pronouns"
style="color: cornflowerblue;">
Pronouns
</a>:
<a href="https://pronouns.org/they-them">
{{ config_vars['pronouns'] }}&nbsp;
</a>
</dtitle>
<p>{{ config_vars['blurb'] }}</p>
</div><!-- /.dash-unit -->
</div><!-- /.col -->