Skip to content

Commit 1200e62

Browse files
committed
Add index
1 parent f63dfad commit 1200e62

File tree

2 files changed

+158
-0
lines changed

2 files changed

+158
-0
lines changed

_config.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Build settings
2+
gems:
3+
- jemoji
4+
- jekyll-paginate
5+
6+
# Site settings
7+
title: "Parallel C++"
8+
description: > # this means to ignore newlines until "email:"
9+
Efficient and Scalable High-Performance Parallel Programming Using HPX
10+
11+
12+
#blog logo
13+
logo: "/assets/images/df_logo.jpg"
14+
float_logo: false # true, false (default)
15+
16+
# blog cover
17+
cover: "/assets/images/cA4aKEIPQrerBnp1yGHv_IMG_9534-3-2.jpg"
18+
19+
name: 'The authors'
20+
author: 'The authors'
21+
author_image: "/assets/images/author.jpg"
22+
23+
paginate: 5
24+
25+
url: "https:\\hpxbook.stellar-group.org" # the base hostname & protocol for your site
26+
baseurl: ""
27+
#used to display twitter cards
28+
#twitter_handle: '@dirkfabisch'
29+
30+
#fill in disqus shortname to use disqus
31+
#disqus: disqus-shortname
32+
33+
#google_analytics: UA-XXXXX-X
34+
35+
# social icons and sharing options
36+
social:
37+
# - icon: twitter
38+
# url: https://twitter.com/dirkfabisch
39+
# desc: Follow me on twitter
40+
# share_url: http://twitter.com/share
41+
# share_title: ?text=
42+
# share_link: "&url="
43+
44+
# - icon: facebook
45+
# url: https://facebook.com/???
46+
# desc: Connect with me facebook
47+
# share_url: https://www.facebook.com/sharer.php
48+
# share_title: ?t=
49+
# share_link: "&u="
50+
51+
- icon: github
52+
url: https://github.com/ModernCPPBook/Examples
53+
desc: Get the exmaples on GitHub
54+
share_url:
55+
share_title:
56+
share_link:
57+
58+
# - icon: google-plus
59+
# url: https://google.com/???
60+
# desc: Add me on google+
61+
# share_url:
62+
# share_title:
63+
# share_link:

index.html

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div class="teaserimage">
6+
<div class="teaserimage-image" {% if site.cover %}style="background-image: url({{ site.cover | prepend: site.baseurl }})"{% endif %}>
7+
Teaser Image
8+
</div>
9+
</div>
10+
11+
<header class="blog-header">
12+
{% if site.logo %}
13+
<a class="blog-logo" href="{{site.url}}{{site.baseurl}}" style="background-image: url('{{ site.logo | prepend: site.baseurl }}')">{{ site.title }}</a>
14+
{% endif %}
15+
<h1 class="blog-title">{{ site.title }}</h1>
16+
<h2 class="blog-description">{{ site.description }}</h2>
17+
<div class="custom-links">
18+
{% for social in site.social %}
19+
{% if social.url %}
20+
<a class="icon-{{ social.icon }}" href="{{ social.url }}" {% if social.desc %} title="{{ social.desc }}"{% endif %}">
21+
<i class="fa fa-{{ social.icon }}"></i>
22+
</a>
23+
&nbsp;&nbsp;·&nbsp;&nbsp;
24+
{% endif %}
25+
{% endfor %}
26+
<a href={{ "/about/" | prepend: site.baseurl }}>About</a>
27+
</div>
28+
</header>
29+
30+
31+
<main class="content" role="main">
32+
33+
{% if site.tags.featured %}
34+
<h5 class="index-headline featured"><span>Featured</span></h5>
35+
36+
<div class="container featured">
37+
{% for post in site.tags.featured %}
38+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article">
39+
<div class="article-item">
40+
<header class="post-header">
41+
<h2 class="post-title" itemprop="name"><a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a></h2>
42+
</header>
43+
<section class="post-excerpt" itemprop="description">
44+
<p>{{ post.content | strip_html | truncatewords: 50 }}</p>
45+
</section>
46+
<div class="post-meta">
47+
<time datetime="{{ post.date | date_to_long_string }}">{{ post.date | date_to_long_string }}</time>
48+
<!-- <span class="post-tags-set">on {{#foreach tags}}<span class="post-tag-{{slug}}">{{#if @first}}{{else}}, {{/if}}<a href="/tag/{{slug}}">{{name}}</a></span>{{/foreach}}</span>-->
49+
</div>
50+
</div>
51+
</article>
52+
{% endfor %}
53+
</div>
54+
55+
<h5 class="index-headline normal"><span>Regular</span></h5>
56+
{% endif %}
57+
58+
<div class="cf frame">
59+
{% for post in paginator.posts %}
60+
<article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article">
61+
<div class="article-item">
62+
<header class="post-header">
63+
<h2 class="post-title" itemprop="name"><a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a></h2>
64+
</header>
65+
<section class="post-excerpt" itemprop="description">
66+
<p>{{ post.excerpt | strip_html | truncatewords: 50 }}</p>
67+
</section>
68+
<div class="post-meta">
69+
<time datetime="{{ post.date | date_to_long_string }}">{{ post.date | date_to_long_string }}</time>
70+
<!-- <span class="post-tags-set">on {{#foreach tags}}<span class="post-tag-{{slug}}">{{#if @first}}{{else}}, {{/if}}<a href="/tag/{{slug}}">{{name}}</a></span>{{/foreach}}</span>-->
71+
</div>
72+
</div>
73+
</article>
74+
{% endfor %}
75+
</div>
76+
77+
<nav class="pagination" role="navigation">
78+
{% if paginator.next_page %}
79+
<a class="newer-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.next_page }}>&larr; Older posts</a>
80+
{% endif %}
81+
<span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span>
82+
{% if paginator.previous_page %}
83+
{% if paginator.page == 2 %}
84+
<a class="older-posts" href={{ "/" | prepend: site.baseurl }}>Newer posts &rarr;</a>
85+
{% else %}
86+
<a class="older-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.previous_page }}>Newer posts &rarr;</a>
87+
{% endif %}
88+
{% endif %}
89+
</nav>
90+
91+
92+
<!-- {{!! After all the posts, we have the previous/next pagination links }}
93+
{{pagination}} -->
94+
95+
</main>

0 commit comments

Comments
 (0)