Deploy preview site to review pull requests (#5)
Signed-off-by: Benoit Donneaux <benoit@leastauthority.com> Reviewed-on: https://code.lafs.eval.latfa.net/tahoe-lafs/web-landing-page/pulls/5 Co-authored-by: Benoit Donneaux <benoit@leastauthority.com> Co-committed-by: Benoit Donneaux <benoit@leastauthority.com>
This commit is contained in:
parent
2dbbc5c2aa
commit
5eb87a6bf5
10 changed files with 118 additions and 23 deletions
|
@ -1,5 +1,5 @@
|
|||
<!-- start custom head snippets -->
|
||||
|
||||
<link href="/assets/images/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
||||
<link href="assets/images/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
||||
|
||||
<!-- end custom head snippets -->
|
||||
|
|
|
@ -6,7 +6,7 @@ excerpt: "Welcome to Dummy Jekyll"
|
|||
header:
|
||||
teaser: /assets/images/posts/unsplash-welcome.jpg
|
||||
gallery:
|
||||
- image_path: assets/images/posts/unsplash-welcome.jpg
|
||||
- image_path: /assets/images/posts/unsplash-welcome.jpg
|
||||
alt: "welcome"
|
||||
---
|
||||
{% include gallery %}
|
||||
|
|
|
@ -6,7 +6,7 @@ excerpt: "This is a generic post."
|
|||
header:
|
||||
teaser: /assets/images/posts/unsplash-post.jpg
|
||||
gallery:
|
||||
- image_path: assets/images/posts/unsplash-post.jpg
|
||||
- image_path: /assets/images/posts/unsplash-post.jpg
|
||||
alt: "post"
|
||||
---
|
||||
{% include gallery %}
|
||||
|
|
|
@ -6,7 +6,7 @@ excerpt: "This is a generic post."
|
|||
header:
|
||||
teaser: /assets/images/posts/unsplash-post.jpg
|
||||
gallery:
|
||||
- image_path: assets/images/posts/unsplash-post.jpg
|
||||
- image_path: /assets/images/posts/unsplash-post.jpg
|
||||
alt: "post"
|
||||
---
|
||||
{% include gallery %}
|
||||
|
|
|
@ -6,7 +6,7 @@ excerpt: "This is a generic post."
|
|||
header:
|
||||
teaser: /assets/images/posts/unsplash-post.jpg
|
||||
gallery:
|
||||
- image_path: assets/images/posts/unsplash-post.jpg
|
||||
- image_path: /assets/images/posts/unsplash-post.jpg
|
||||
alt: "post"
|
||||
---
|
||||
{% include gallery %}
|
||||
|
|
|
@ -12,24 +12,24 @@
|
|||
}*/
|
||||
/*
|
||||
.page__hero--overlay {
|
||||
background: url(/assets/images/pattern-4.gif) repeat left top;
|
||||
background: url(../images/pattern-4.gif) repeat left top;
|
||||
}
|
||||
*/
|
||||
.initial-content {
|
||||
//position: relative;
|
||||
//top: 70px;
|
||||
background: url(/assets/images/pattern-1.png) repeat left top;
|
||||
background: url(../images/pattern-1.png) repeat left top;
|
||||
}
|
||||
/*
|
||||
#about {
|
||||
background: url(/assets/images/pattern-2.gif) repeat left top;
|
||||
background: url(../images/pattern-2.gif) repeat left top;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "homestead_regularregular";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: url("/assets/fonts/homestead-regular-webfont.woff") format("woff");
|
||||
src: url("../fonts/homestead-regular-webfont.woff") format("woff");
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6, .archive__item-title, .masthead__inner-wrap {
|
||||
|
@ -44,4 +44,4 @@ h1, h2, h3, h4, h5, h6, .archive__item-title, .masthead__inner-wrap {
|
|||
.archive__item-excerpt {
|
||||
color: #a9862b;
|
||||
}
|
||||
*/
|
||||
*/
|
||||
|
|
|
@ -24,7 +24,7 @@ documentation_list:
|
|||
url: "https://tahoe-lafs.readthedocs.io/en/latest/about-tahoe.html"
|
||||
btn_label: "Read More"
|
||||
btn_class: "btn--primary"
|
||||
- image_path: assets/images/manual.jpg
|
||||
- image_path: /assets/images/manual.jpg
|
||||
image_caption: "Image courtesy of [Unsplash](https://unsplash.com/)"
|
||||
alt: "manual"
|
||||
title: "Manual"
|
||||
|
@ -44,7 +44,7 @@ contribute:
|
|||
- title: "Get Involved"
|
||||
excerpt: ""
|
||||
contribute_list:
|
||||
- image_path: assets/images/mailing.jpg
|
||||
- image_path: /assets/images/mailing.jpg
|
||||
image_caption: "Image courtesy of [Unsplash](https://unsplash.com/)"
|
||||
alt: "mailing"
|
||||
title: "Mailing list"
|
||||
|
@ -96,10 +96,10 @@ about:
|
|||
<div class="grid__item">
|
||||
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
|
||||
<div class="archive__item-teaser">
|
||||
<img src="{{post.header.teaser}}" alt="">
|
||||
<img src="{{ post.header.teaser | relative_url }}" alt="">
|
||||
</div>
|
||||
<h2 class="archive__item-title" itemprop="headline">
|
||||
<a href="{{ post.url }}" rel="permalink">{{ post.title }}</a>
|
||||
<a href="{{ post.url | relative_url }}" rel="permalink">{{ post.title }}</a>
|
||||
</h2>
|
||||
<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt }}</p>
|
||||
</article>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue