diff --git a/.dockerignore b/.dockerignore index f1bb407..5edb3f5 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,3 +2,4 @@ .gitignore __pycache__ scripts +example.png diff --git a/README.md b/README.md index 9cb67b6..ea0caec 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,9 @@ tiny_personal_website ===================== This is a Python based CMS (content management system) for a small personal -website aimed at first and foremost being a resume. +website aimed at first and foremost being a resume. + +screenshot of jessebot.work which serves as an example website. It features a picture of Jesse a person with blue hair that is almost 30. a blurb about them that you can read in config/config.yaml and link icons to github, gitlab, and linkedin. I originally wrote this 7 or 8 years ago, and recently absolutely borked my newer website, resulting in me quickly resurrecting this thing in about a day @@ -66,5 +68,5 @@ And the container port of note is port 8080. ## Frontend Dev Notes I found [this guide](https://stackoverflow.com/questions/68558955/bootstrap-centering-container-in-the-middle-of-the-page) on vertically centering items and it helped a lot. Basically both the body and -base container you have need to be h-100 and vh-100 and for extra security, +base container you have need to be h-100 and vh-100 and for extra security, add `min-height: 100vh;` to the CSS for the body. diff --git a/config/config.yaml b/config/config.yaml index c4788ce..359c6f3 100644 --- a/config/config.yaml +++ b/config/config.yaml @@ -12,7 +12,7 @@ fork_me: true # image shown at the front of the page, this should be in /static/img profile_image: 'my_picture.png' # image alt text -profile_image_alt: 'Portrait selfie of a 30 year old person with an undercut and medium legnth blue hair parted to the side. They are smiling and wearing a black shirt.' +profile_image_alt: 'Portrait selfie of a 29 year old person with an undercut and medium legnth blue hair parted to the side. They are smiling and wearing a black shirt.' # Your name name: 'Jesse Hitch' # Pronouns diff --git a/config/config_sample.yaml b/config/config_sample.yaml deleted file mode 100644 index 525d4b0..0000000 --- a/config/config_sample.yaml +++ /dev/null @@ -1,36 +0,0 @@ ---- -# absolute path required -web_root: '/var/www/html' -# favicon, can take any image type -favicon: 'favicon_smile.gif' -# domain name, or whatever you want the tab in the browser to say -website_title: 'example.com' -# the default image shown at the front of the page -image: './my_picture.png' -# Your name -name: 'Bob Smith' -# Job Title -occupation: 'professional basket weaver' -# Skills - what you're good at. -skills: ['cooking','web design'] -# things you like -likes: ['videogames','analogies','silly hair'] -# Full URL to your github -github_URL: 'https://github.com/jessebot' -# Full URL to your linkedin public profile -linkedin_URL: 'https://www.linkedin.com/in/jesse-hitch-8b5b023a/' -# complete google doc sharing URL, assuming this is public -resume_live_doc_URL: 'https://docs.google.com/document/d/blahblahblah' -# in your google doc, you can go to download as and right click copy that -# URL, or you can host a live copy at another URL -resume_pdf_URL: 'https://docs.google.com/document/d/blahblahblah/export?format=pdf' -resume_docx_URL: 'https://docs.google.com/document/d/blahblahblah/export?format=docx' -# setting to false will remove fork me corner banner -fork_me: True -# Boolean, if set to True, will generate new panel with below info -optional_panel: True -# this could be social media, other conent, whatever suits you! -opt_panel_title: "Linux Newbie Class" -opt_panel_image: "penguin_copy.png" -opt_panel_button_text: "How To Unix/Linux" -opt_panel_URL: "http://howtonix.info/" diff --git a/example.png b/example.png new file mode 100644 index 0000000..58417c2 Binary files /dev/null and b/example.png differ