Skip to content

Commit e062f80

Browse files
author
Sophie Shepherd
committed
Add top of layout
1 parent fd03dca commit e062f80

File tree

6 files changed

+584
-13
lines changed

6 files changed

+584
-13
lines changed

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
source 'https://rubygems.org'
22
gem 'github-pages', group: :jekyll_plugins
3+
gem 'jekyll-octicons'

Gemfile.lock

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ GEM
125125
activesupport (~> 4.0)
126126
html-pipeline (~> 2.3)
127127
jekyll (~> 3.0)
128+
jekyll-octicons (8.0.0)
129+
jekyll (~> 3.1)
130+
octicons (= 8.0.0)
128131
jekyll-optional-front-matter (0.3.0)
129132
jekyll (~> 3.0)
130133
jekyll-paginate (1.1.0)
@@ -209,6 +212,8 @@ GEM
209212
multipart-post (2.0.0)
210213
nokogiri (1.9.1)
211214
mini_portile2 (~> 2.4.0)
215+
octicons (8.0.0)
216+
nokogiri (>= 1.6.3.1)
212217
octokit (4.13.0)
213218
sawyer (~> 0.8.0, >= 0.5.3)
214219
pathutil (0.16.2)
@@ -245,6 +250,7 @@ PLATFORMS
245250

246251
DEPENDENCIES
247252
github-pages
253+
jekyll-octicons
248254

249255
BUNDLED WITH
250-
1.16.1
256+
2.0.1

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
title: Brandon Rosage
22
description: description XYZ
3+
34

45
sass:
56
sass_dir: node_modules
7+
8+
gems:
9+
- jekyll-octicons

_layouts/stacked.html

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,31 @@
33
{% assign user = site.github.organization_members[0] %}
44

55
<div class="container-lg py-6 p-responsive text-center">
6-
<img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 180px;">
7-
<h1 class="h0 mb-2">{{ site.github.project_title }}</h1>
8-
<p class="f4">
9-
<a href="https://github.com/{{ user.login }}">
10-
@{{ user.login }}
11-
</a>
6+
<img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 150px;">
7+
<h1 class="mb-2">{{ site.title }}</h1>
8+
<p class="col-lg-8 mx-auto mb-3 f3 text-gray">
9+
Hi! I'm Ben. I love two things: bridges and smiling. I'm an aspiring developer who is learning how to use GitHub to build the stuff I wish existed. I'm looking to meet other developers who can help to contribute to the projects I have started.
1210
</p>
11+
<div class="f4 mb-3">
12+
<div class="d-inline-block mr-3">
13+
{% octicon mark-github height:20 class:"mr-1 v-align-middle" aria-label:GitHub %}
14+
<a href="https://github.com/{{ user.login }}">
15+
@{{ user.login }}
16+
</a>
17+
</div>
18+
<div class="d-inline-block mr-3">
19+
{% octicon mail height:20 class:"mr-1 v-align-middle" aria-label:Email %}
20+
<a href="mailto:{{ user.email }}">
21+
{{ site.email }}
22+
</a>
23+
</div>
24+
<div class="d-inline-block">
25+
{% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %}
26+
<a href="https://github.com/{{ user.login }}">
27+
Austin, TX
28+
</a>
29+
</div>
30+
</div>
1331
</div>
1432

1533
{{ content }}

0 commit comments

Comments
 (0)