forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-52: Set up project blog, draft 0.3 release posting
This will need additional updates after the 0.3 release to fix dates and URLs, but wanted to get this up for review and comment. Some things I did here: * Fixed top navbar on mobile devices * Set up blogroll and simple blog templates * Added "Project Links" menu * Moved committers to a separate page Author: Wes McKinney <[email protected]> Closes apache#639 from wesm/ARROW-52 and squashes the following commits: a104fbd [Wes McKinney] Code review comments and fix typos 5262583 [Wes McKinney] Typo 2236a7c [Wes McKinney] tweak 3f57b51 [Wes McKinney] Typo 4b22731 [Wes McKinney] Finish 0.3 release blog draft 5e34079 [Wes McKinney] Drafting 0.3 release blog post 058c625 [Wes McKinney] Rename post d22490d [Wes McKinney] Fix mobile navbar. Move committers to separate page. Add project links nav, install page. Blog page placeholder
- Loading branch information
Showing
13 changed files
with
537 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div> | ||
<aside> | ||
<h4>Posts</h4> | ||
<ul> | ||
{% for post in site.posts %} | ||
<li class="{% if page.title == post.title %}current{% endif %}"> | ||
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</aside> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{% comment %} | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to you under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
{% endcomment %} | ||
<div class="container"> | ||
<h2> | ||
{{ post.title }} | ||
<a href="{{ post.url }}" class="permalink" title="Permalink">∞</a> | ||
</h2> | ||
|
||
<div class="panel"> | ||
<div class="panel-body"> | ||
<div> | ||
<span class="label label-default">Published</span> | ||
<span class="published"> | ||
<i class="fa fa-calendar"></i> | ||
{{ post.date | date_to_string }} | ||
</span> | ||
</div> | ||
<div> | ||
<span class="label label-default">By</span> | ||
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ post.author }}</a> | ||
</div> | ||
</div> | ||
</div> | ||
{{ post.content }} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<section class="blog"> | ||
<div class="grid"> | ||
|
||
<div class=""> | ||
{{ content }} | ||
</div> | ||
|
||
<!-- {% include blog_contents.html %} --> | ||
<div class="clear"></div> | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{% include top.html %} | ||
{% capture homepage %}http://people.apache.org/~{{ page.author }}{% endcapture %} | ||
|
||
<body class="wrap"> | ||
<div class="container"> | ||
{% include header.html %} | ||
|
||
<h2> | ||
{{ page.title }} | ||
<a href="{{ page.url }}" class="permalink" title="Permalink">∞</a> | ||
</h2> | ||
|
||
<div class="panel"> | ||
<div class="panel-body"> | ||
<div> | ||
<span class="label label-default">Published</span> | ||
<span class="published"> | ||
<i class="fa fa-calendar"></i> | ||
{{ page.date | date_to_string }} | ||
</span> | ||
</div> | ||
<div> | ||
<span class="label label-default">By</span> | ||
<a href="{{ homepage }}"><i class="fa fa-user"></i> {{ page.author }}</a> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{{ content }} | ||
|
||
{% include footer.html %} | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.