changing blurb config var to actual atributes

This commit is contained in:
JesseBot 2017-07-15 16:39:49 +00:00
parent 169af416a0
commit f8a9dbd28a
2 changed files with 8 additions and 2 deletions

View file

@ -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">

View file

@ -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')