Skip to content

Commit 88bc601

Browse files
committed
Update to new website
1 parent 6a2835c commit 88bc601

File tree

138 files changed

+3787
-6387
lines changed

Some content is hidden

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

138 files changed

+3787
-6387
lines changed

.circleci/config.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
version: 2
2+
jobs:
3+
test:
4+
docker:
5+
- image: circleci/ruby:2.4-node-browsers-legacy
6+
steps:
7+
- checkout
8+
- run: |
9+
bundle install
10+
bundle exec jekyll build
11+
deploy:
12+
docker:
13+
- image: circleci/ruby:2.4-node-browsers-legacy
14+
steps:
15+
- add_ssh_keys:
16+
fingerprints:
17+
- "0e:f2:3d:32:8f:16:ed:25:7f:ea:a6:03:79:22:54:df"
18+
- checkout
19+
- run: bundle install
20+
- run: bundle exec jekyll build
21+
- run: |
22+
find . -maxdepth 1 ! -name '_site' ! -name '.git' ! -name '.circleci' -exec rm -rf {} \;
23+
mv _site/* .
24+
rm -r _site/
25+
git config --global user.name "CircleCI"
26+
git config --global user.email "[email protected]"
27+
git add .
28+
git commit --allow-empty -m "$(git log develop -1 --pretty=%B)"
29+
git push -f origin HEAD:master
30+
workflows:
31+
version: 2
32+
build_and_deploy:
33+
jobs:
34+
- test:
35+
filters:
36+
branches:
37+
ignore: master
38+
- deploy:
39+
requires:
40+
- test
41+
filters:
42+
branches:
43+
only: develop

Gemfile

+32-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,32 @@
1-
source 'https://rubygems.org'
2-
gem 'github-pages', group: :jekyll_plugins
1+
source "https://rubygems.org"
2+
3+
# Hello! This is where you manage which Jekyll version is used to run.
4+
# When you want to use a different version, change it below, save the
5+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6+
#
7+
# bundle exec jekyll serve
8+
#
9+
# This will help ensure the proper Jekyll version is running.
10+
# Happy Jekylling!
11+
gem "jekyll", "~> 3.8.3"
12+
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem "minima", "~> 2.0"
15+
16+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
17+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
18+
# gem "github-pages", group: :jekyll_plugins
19+
20+
# If you have any plugins, put them here!
21+
group :jekyll_plugins do
22+
gem "jekyll-feed", "~> 0.6"
23+
gem 'jekyll-sitemap'
24+
gem 'jekyll-email-protect'
25+
gem 'jekyll-seo-tag'
26+
end
27+
28+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
29+
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
30+
31+
# Performance-booster for watching directories on Windows
32+
gem "wdm", "~> 0.1.0" if Gem.win_platform?

_config.yml

+34
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,37 @@
11
# Jekyll configuration
22

3+
title: The C++ Alliance
4+
5+
url: http://cppalliance.org # the base hostname & protocol for your site, e.g. http://example.com
6+
# baseurl: /subpath # the subpath of your site, e.g. /blog
7+
description: >- # this means to ignore newlines until "baseurl:"
8+
The C++ Alliance is dedicated to helping the C++ programming language
9+
evolve. We see it developing as an ecosystem of open source libraries
10+
and as a growing community of those who contribute to those libraries..
311
excerpt_separator: "<!-- more -->"
12+
github_username: CPPAlliance
13+
twitter:
14+
username: CPPAlliance
15+
card: summary
16+
site: '@CPPAlliance'
17+
18+
# Build settings
19+
markdown: kramdown
20+
theme: minima
21+
plugins:
22+
- jekyll-feed
23+
- jekyll-sitemap
24+
- jekyll-email-protect
25+
- jekyll-seo-tag
26+
27+
# Exclude from processing.
28+
# The following items will not be processed, by default. Create a custom list
29+
# to override the default setting.
30+
# exclude:
31+
# - Gemfile
32+
# - Gemfile.lock
33+
# - node_modules
34+
# - vendor/bundle/
35+
# - vendor/cache/
36+
# - vendor/gems/
37+
# - vendor/ruby/

_includes/contact.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!-- Connect with us section-->
2+
<section class="section connect socials" id="contact">
3+
<div class='section-content'>
4+
<div class='section-title'>
5+
<h2 class='header text-xl'>Contact</h2>
6+
<h2 class='header-shadow center'>Contact</h2>
7+
</div>
8+
<div class='connect-content'>
9+
<div class='row row-sm'>
10+
<div class='col-fourth col-fourth-sm'>
11+
<a class='social-icon' href="https://github.com/CPPAlliance">
12+
<div class='social-icon-img-wrapper'>
13+
<img class='social-icon-img github' alt='github-logo' src='{{ site.baseurl }}/images/icons/github.svg' />
14+
</div>
15+
<span class='social-icon-text'>GitHub</span>
16+
</a>
17+
</div>
18+
<div class='col-fourth col-fourth-sm'>
19+
<a class='social-icon' href="https://www.facebook.com/CPPAlliance/">
20+
<div class='social-icon-img-wrapper'>
21+
<img class='social-icon-img facebook' alt='facebook-logo' src='{{ site.baseurl }}/images/icons/facebook.svg' />
22+
</div>
23+
<span class='social-icon-text'>Facebook</span>
24+
</a>
25+
</div>
26+
<div class='col-fourth col-fourth-sm'>
27+
<a class='social-icon' href="https://twitter.com/cppalliance">
28+
<div class='social-icon-img-wrapper'>
29+
<img class='social-icon-img twitter' alt='twitter-logo' src='{{ site.baseurl }}/images/icons/twitter.svg' />
30+
</div>
31+
<span class='social-icon-text'>Twitter</span>
32+
</a>
33+
</div>
34+
<div class='col-fourth col-fourth-sm'>
35+
<a class='social-icon' href="https://www.linkedin.com/in/cppalliance/">
36+
<div class='social-icon-img-wrapper'>
37+
<img class='social-icon-img linkedin' alt='linkedin-logo' src='{{ site.baseurl }}/images/icons/linkedin.svg' />
38+
</div>
39+
<span class='social-icon-text'>LinkedIn</span>
40+
</a>
41+
</div>
42+
</div>
43+
</div>
44+
</div>
45+
</section>

_includes/favicon.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=1">
2-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=1">
3-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=1">
4-
<link rel="manifest" href="/site.webmanifest?v=1">
5-
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=1" color="#a91c20">
6-
<link rel="shortcut icon" href="/favicon.ico?v=1">
1+
<link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/apple-touch-icon.png?v=1">
2+
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/favicon-32x32.png?v=1">
3+
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.baseurl }}/favicon-16x16.png?v=1">
4+
<link rel="manifest" href="{{ site.baseurl }}/site.webmanifest?v=1">
5+
<link rel="mask-icon" href="{{ site.baseurl }}/safari-pinned-tab.svg?v=1" color="#a91c20">
6+
<link rel="shortcut icon" href="{{ site.baseurl }}/favicon.ico?v=1">
77
<meta name="msapplication-TileColor" content="#ffffff">
8-
<meta name="theme-color" content="#ffffff">
8+
<meta name="theme-color" content="#ffffff">

_includes/team-bio.html

+25-34
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,25 @@
1-
<!-- member info section-->
2-
<section class="innerSection innerBlogContainer">
3-
<div class="container">
4-
<div class="row">
5-
<div class="col-lg-8">
6-
<h3>{{ page.title }}</h3>
7-
<p class="subhead">{{ page.team-title }}</p>
8-
<p class="emailS">
9-
{% if page.team-email %}
10-
<a href="mailto:{{ page.team-email }}">{{ page.team-email }}</a> |
11-
{% endif %}
12-
{% if page.team-site %}
13-
<a href="{{ page.team-site }}">{{ page.team-site-text }}</a> |
14-
{% endif %}
15-
{% if page.team-resume %}
16-
<a href="{{ page.team-resume }}"><i class="fa fa-file-text"></i></a>
17-
{% endif %}
18-
{% if page.team-stack-overflow %}
19-
<a href="{{ page.team-stack-overflow }}"><i class="fa fa-stack-overflow"></i></a>
20-
{% endif %}
21-
{% if page.team-github %}
22-
<a href="{{ page.team-github }}"><i class="fa fa-github"></i></a>
23-
{% endif %}
24-
{% if page.team-linkedin %}
25-
<a href="{{ page.team-linkedin }}"><i class="fa fa-linkedin"></i></a>
26-
{% endif %}
27-
{% if page.team-twitter %}
28-
<a href="{{ page.team-twitter }}"><i class="fa fa-twitter"></i></a>
29-
{% endif %}
30-
{% if page.team-facebook %}
31-
<a href="{{ page.team-facebook }}"><i class="fa fa-facebook"></i></a>
32-
{% endif %}
33-
</p>
34-
<div class="contentTxt">
1+
2+
<div class='social-icons'>
3+
{% if page.email %}
4+
<a href="mailto:{{ page.email | encode_email }}"><img class='social-icon email' src="{{ site.baseurl }}/images/icons/email-gold.svg" /></a>
5+
{% endif %}
6+
{% if page.site %}
7+
<a href="{{ page.site }}"><img class='social-icon web' src="{{ site.baseurl }}/images/icons/web-gold.svg" /></a>
8+
{% endif %}
9+
{% if page.resume %}
10+
<a href="{{ page.resume }}"><img class='social-icon resume' src="{{ site.baseurl }}/images/icons/resume-gold.svg" /></a>
11+
{% endif %}
12+
{% if page.stack-overflow %}
13+
<a href="{{ page.stack-overflow }}"><img class='social-icon stack' src="{{ site.baseurl }}/images/icons/stack-overflow-gold.svg" /></a>
14+
{% endif %}
15+
{% if page.github %}
16+
<a href="{{ page.github }}"><img class='social-icon github' src="{{ site.baseurl }}/images/icons/github-gold.svg" /></a>
17+
{% endif %}
18+
{% if page.linkedin %}
19+
<a href="{{ page.linkedin }}"><img class='social-icon linkedin' src="{{ site.baseurl }}/images/icons/linkedin-gold.svg" /></a>
20+
{% endif %}
21+
{% if page.twitter %}
22+
<a href="{{ page.twitter }}"><img class='social-icon twitter' src="{{ site.baseurl }}/images/icons/twitter-gold.svg" /></a>
23+
{% endif %}
24+
</div>
25+

_includes/team-blog.html

+15-28
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,18 @@
1-
</div>
2-
</div>
3-
<div class="col-lg-4 imgResposive">
4-
<img src="/people/{{ page.team-id }}.jpg" alt="{{ page.title }}"/>
5-
</div>
6-
</div>
7-
</div>
8-
</section>
9-
101
<!-- Blog section-->
11-
{% assign n = site.categories[{{page.team-id}}] | size %}
12-
{% if n != 0 %}
13-
<section class="innerSection innerBlogContainer">
14-
<div class="container">
15-
<div class="row">
16-
<div class="col-lg-12 blogInner">
17-
<h3>Blog</h3>
18-
19-
{% for post in site.categories[{{page.team-id}}] %}
20-
<div class="blogContainer">
21-
<span>{{ post.date | date: "%m/%d/%Y"}}</span>
22-
<a class="innerboldTxt" href="{{ post.url }}">{{ post.title }}</a>
23-
<p>{{ post.excerpt }}</p>
24-
</div>
25-
{% endfor %}
26-
27-
</div>
28-
</div>
29-
</div>
2+
{% assign n = site.categories[{{page.id}}] | size %}
3+
{% if n != 0 %}
4+
<section class="section news">
5+
<div class='section-title'>
6+
<h2 class='header text-xl'>Blog</h2>
7+
<h2 class='header-shadow'>Blog</h2>
8+
</div>
9+
<ul>
10+
{% for post in site.categories[{{page.id}}] %}
11+
<li class='news-list-item'>
12+
<span class='text-s news-date'>{{ post.date | date: "%m/%d/%Y"}}</span>
13+
<a class='text-l news-title link' href="{{site.baseurl}}{{ post.url }}">{{ post.title }}</a>
14+
</li class='news-list-item'>
15+
{% endfor %}
16+
</ul>
3017
</section>
3118
{% endif %}

_includes/top-title.html

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
1-
<section class="content-section innerBanner">
2-
<img alt="" src="/images/inner-banner.jpg"/>
3-
<div class="container h-100">
4-
<div class="d-flex text-center h-100">
5-
<div class="my-auto w-100 text-white">
6-
<div class="pageHeadtxt"><h1>{{ include.heading }}</h1><h2>{{ include.heading }}</h2></div>
7-
</div>
8-
</div>
1+
<section class='hero'>
2+
<div class='titles'>
3+
<h1 class='text-xxl main-header'>{{ include.header }}</h1>
4+
<h2 class='text-xl sub-header'>{{ include.subheader }}</h2>
95
</div>
106
</section>

0 commit comments

Comments
 (0)