mirror of
https://github.com/jessebot/tiny_personal_website.git
synced 2025-10-01 01:48:43 +00:00
changing blurb config var to actual atributes
This commit is contained in:
parent
169af416a0
commit
f8a9dbd28a
2 changed files with 8 additions and 2 deletions
|
@ -5,7 +5,11 @@
|
|||
<div class="card mx-auto" style="width: 450px;">
|
||||
<img class="img-fluid" src="/images/{{main_pic}}" alt="What I look like.">
|
||||
<div class="card-img-overlay">
|
||||
<div style="font-family: 'Cutive Mono';">{{header_quotation}}</div>
|
||||
<div style="font-family: 'Cutive Mono';">
|
||||
{{name}} = {'occupation': '{{occupation}}',
|
||||
<p>'primary_skills': {{skills}},</p>
|
||||
<p>'likes': {{likes}}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-header">
|
||||
<ul class="nav nav-tabs card-header-tabs">
|
||||
|
|
|
@ -36,7 +36,9 @@ def index():
|
|||
browser_tab_title = get_global_variable('website_title')
|
||||
main_pic = get_global_variable('profile_image')
|
||||
name = get_global_variable('profile_name')
|
||||
header_quotation = get_global_variable('profile_quote')
|
||||
occupation = get_global_variable('occupation')
|
||||
skills = get_global_variable('skills')
|
||||
likes = get_global_variable('likes')
|
||||
blurb = get_global_variable('profile_blurb')
|
||||
github_URL = get_global_variable('github_URL')
|
||||
linkedin_URL = get_global_variable('linkedin_URL')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue