Skip to content

Commit c8c376e

Browse files
committed
2 parents 8c8e198 + 9d192eb commit c8c376e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+2809
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/_site

Gemfile

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

Gemfile.lock

Lines changed: 6 additions & 0 deletions
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.3.0)
129+
jekyll (~> 3.1)
130+
octicons (= 8.3.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.3.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)
@@ -246,6 +251,7 @@ PLATFORMS
246251
DEPENDENCIES
247252
github-pages
248253
jekyll-github-metadata
254+
jekyll-octicons
249255

250256
BUNDLED WITH
251257
1.16.1

_config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1-
2-
plugins:
3-
- jekyll-github-metadata
1+
title: Brandon Rosage
2+
description: description XYZ
3+
email: brandon@github.com
44

55
sass:
66
sass_dir: node_modules
7+
8+
gems:
9+
- jekyll-octicons
10+
- jekyll-github-metadata

_includes/footer.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
</body>
2+
</html>

_includes/header.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>{{ site.github.project_title }}</title>
6+
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
7+
</head>
8+
<body>

_layouts/sidebar.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% include header.html %}
2+
3+
{% assign user = site.github.organization_members[0] %}
4+
5+
<div class="d-md-flex">
6+
<div class="flex-self-stretch border-bottom border-md-bottom-0 border-md-right col-md-5 col-lg-4 col-xl-3 px-4 py-6 px-lg-6">
7+
<img src="{{ user.avatar_url }}" class="circle mb-3" style="max-width: 150px;">
8+
<h1 class="mb-2">{{ site.title }}</h1>
9+
<p class="mb-3 f4 text-gray">
10+
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.
11+
</p>
12+
<div class="f4 mb-6">
13+
<div class="mb-3">
14+
{% octicon mark-github height:20 class:"mr-1 v-align-middle" aria-label:GitHub %}
15+
<a href="https://github.com/{{ user.login }}">
16+
@{{ user.login }}
17+
</a>
18+
</div>
19+
<div class="mb-3">
20+
{% octicon mail height:20 class:"mr-1 v-align-middle" aria-label:Email %}
21+
<a href="mailto:{{ user.email }}">
22+
{{ site.email }}
23+
</a>
24+
</div>
25+
<div class="">
26+
{% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %}
27+
Austin, TX
28+
</div>
29+
</div>
30+
</div>
31+
<div class="px-4 py-6 px-lg-6">
32+
{{ content }}
33+
</div>
34+
</div>
35+
36+
{% include footer.html %}

_layouts/stacked.html

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{% include header.html %}
2+
3+
{% assign user = site.github.organization_members[0] %}
4+
5+
<div class="container-lg py-6 p-responsive text-center">
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.
10+
</p>
11+
<div class="f4 mb-6">
12+
<div class="d-md-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-md-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-md-inline-block">
25+
{% octicon location height:20 class:"mr-1 v-align-middle" aria-label:Location %}
26+
Austin, TX
27+
</div>
28+
</div>
29+
30+
{{ content }}
31+
32+
</div>
33+
34+
35+
36+
{% include footer.html %}

_site/assets/styles.css

Lines changed: 527 additions & 0 deletions
Large diffs are not rendered by default.

_site/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>profile-generator</title>
5+
<title>Brandon Rosage</title>
66
<link href="/assets/styles.css" rel="stylesheet" type="text/css">
77
</head>
88
<body>
99
<div class="container-lg p-responsive">
10-
<h1>profile-generator</h1>
11-
<p></p>
10+
<h1>Brandon Rosage</h1>
11+
<p>description XYZ</p>
1212
<p class="text-bold"></p>
1313
<img src="">
1414
</div>

0 commit comments

Comments
 (0)