File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
# Site settings
3
3
# -----------------------------------------------------------------------------
4
4
5
- title : " You R. Long Last Name's personal website "
5
+ title : blank # the website title (if blank, full name will be used instead)
6
6
first_name : You
7
7
middle_name : R.
8
- last_name : Long Last Name
8
+ last_name : ( Long Last) Name
9
9
email : you@example.com
10
10
description : > # this means to ignore newlines until "url:"
11
11
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
Original file line number Diff line number Diff line change 2
2
< meta name ="viewport " content ="width=device-width, initial-scale=1, shrink-to-fit=no ">
3
3
< meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
4
4
5
- < title > {{ site.title }}{% if page.title and page.url != "/" %} | {{ page.title }}{% endif %}</ title >
5
+ < title > {% if site.title == blank %}{{ site.title }}{% else %}{{ site.first_name }} {{ site.middle_name }} {{ site.last_name }}{% endif % }{% if page.title and page.url != "/" %} | {{ page.title }}{% endif %}</ title >
6
6
< meta name ="description " content ="{{ site.description }} ">
7
7
8
8
<!-- Bootstrap & MDB -->
Original file line number Diff line number Diff line change 5
5
< div class ="container ">
6
6
{% if page.title != "about" %}
7
7
< a class ="navbar-brand title font-weight-lighter " href ="{{ site.baseurl | prepend: site.url }}/ ">
8
- {% if site.title %}{{ site.title }}{% else %}< span class ="font-weight-bold "> {{ site.first_name }}</ span > {{ site.middle_name }} {{ site.last_name }}{% endif %}
8
+ {% if site.title == blank %}{{ site.title }}{% else %}< span class ="font-weight-bold "> {{ site.first_name }}</ span > {{ site.middle_name }} {{ site.last_name }}{% endif %}
9
9
</ a >
10
10
{% elsif site.show_social_icons %}
11
11
<!-- Social Icons -->
Original file line number Diff line number Diff line change 6
6
7
7
< header class ="post-header ">
8
8
< h1 class ="post-title ">
9
- {% if site.title %}{{ site.title }}{% else %}< span class ="font-weight-bold "> {{ site.first_name }}</ span > {{ site.middle_name }} {{ site.last_name }}{% endif %}
9
+ {% if site.title == blank %}{{ site.title }}{% else %}< span class ="font-weight-bold "> {{ site.first_name }}</ span > {{ site.middle_name }} {{ site.last_name }}{% endif %}
10
10
</ h1 >
11
11
</ header >
12
12
You can’t perform that action at this time.
0 commit comments