File tree 2 files changed +35
-28
lines changed
2 files changed +35
-28
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- layout: page
2
+ layout: default
3
3
---
4
4
5
- < div class ="row ">
6
- < div class ="col ">
7
- {{ content }}
8
- </ div >
9
- {% if page.profile %}
10
- < div class ="profile col-4 {% if page.profile.align == 'left' %}order-first{% endif %} ">
11
- {% if page.profile.image %}
12
- < img class ="img-fluid z-depth-1 rounded " src ="{{ page.profile.image | prepend: '/assets/img/' | relative_url }} ">
13
- {% endif %}
14
- {% if page.profile.address %}
15
- < div class ="address ">
16
- {{ page.profile.address }}
5
+ < div class ="post ">
6
+
7
+ < header class ="post-header ">
8
+ {% assign name = site.title | split: ' ' %}
9
+ < h1 class ="post-title "> < span class ="font-weight-bold "> {{ name | first }}</ span > {{ name | last }}</ h1 >
10
+ < p class ="post-description "> {{ page.description }}</ p >
11
+ </ header >
12
+
13
+ < article >
14
+ < div class ="row ">
15
+ < div class ="col ">
16
+ {{ content }}
17
+ </ div >
18
+ {% if page.profile %}
19
+ < div class ="profile col-4 {% if page.profile.align == 'left' %}order-first{% endif %} ">
20
+ {% if page.profile.image %}
21
+ < img class ="img-fluid z-depth-1 rounded " src ="{{ page.profile.image | prepend: '/assets/img/' | relative_url }} ">
22
+ {% endif %}
23
+ {% if page.profile.address %}
24
+ < div class ="address ">
25
+ {{ page.profile.address }}
26
+ </ div >
27
+ {% endif %}
17
28
</ div >
18
- {% endif %}
29
+ {% endif %}
19
30
</ div >
31
+
32
+ {% if page.news %}
33
+ {% include news.html %}
20
34
{% endif %}
21
- </ div >
22
35
23
- {% if page.news %}
24
- {% include news.html %}
25
- {% endif %}
36
+ {% if page.social %}
37
+ < div class ="social ">
38
+ {% include social.html %}
39
+ < div class ="contact-note "> {{ site.contact_note }}</ div >
40
+ </ div >
41
+ {% endif %}
42
+ </ article >
26
43
27
- {% if page.social %}
28
- < div class ="social ">
29
- {% include social.html %}
30
- < div class ="contact-note "> {{ site.contact_note }}</ div >
31
44
</ div >
32
- {% endif %}
Original file line number Diff line number Diff line change 4
4
< div class ="post ">
5
5
6
6
< header class ="post-header ">
7
- {% if page.title == 'about' %}
8
- {% assign name = site.title | split: ' ' %}
9
- < h1 class ="post-title "> < span class ="font-weight-bold "> {{ name | first }}</ span > {{ name | last }}</ h1 >
10
- {% else %}
11
7
< h1 class ="post-title "> {{ page.title }}</ h1 >
12
- {% endif %}
13
8
< p class ="post-description "> {{ page.description }}</ p >
14
9
</ header >
15
10
You can’t perform that action at this time.
0 commit comments