diff --git a/public/language/en-AU.jsx b/public/language/en-AU.jsx
index 697a8f5..d7cc5d9 100644
--- a/public/language/en-AU.jsx
+++ b/public/language/en-AU.jsx
@@ -25,10 +25,6 @@ export default {
},
"blog": {
- "error": {
- "title": "Failed to get the blog",
- "body": "Failed to get the blogs and articles from the server, please try again later or refresh your browser."
- },
"article": {
"readMore": "Read More"
}
@@ -231,7 +227,19 @@ export default {
},
"blog": {
- "title": "Blog"
+ "title": "Blog",
+ "error": {
+ "title": "Failed to get the blog",
+ "body": "Failed to get the blogs and articles from the server, please try again later or refresh your browser."
+ }
+ },
+
+ "article": {
+ "title": "Article",
+ "error": {
+ "title": "Failed to get article",
+ "body": "Failed to get the article from the server, please try again later or refresh your browser."
+ }
}
},
diff --git a/public/pages/blog/BlogPage.jsx b/public/pages/blog/BlogPage.jsx
index 3f158de..f548928 100644
--- a/public/pages/blog/BlogPage.jsx
+++ b/public/pages/blog/BlogPage.jsx
@@ -39,9 +39,10 @@ import Styles from './BlogPage.scss';
export default withBlogTemplate(withLanguage(props => {
let { lang, articles, page, pages, pending, error } = props;
+ let l = lang.pages.blog;
let children;
- if(error) error =
;
+ if(error) error =
;
if(pending) pending =
;
if(articles && articles.length) {
@@ -49,21 +50,23 @@ export default withBlogTemplate(withLanguage(props => {
-
+
);
}
return (
{ error }
{ pending }
{ children }
-
);
}));
diff --git a/public/pages/blog/BlogPage.scss b/public/pages/blog/BlogPage.scss
index 4b01acc..bfaf635 100644
--- a/public/pages/blog/BlogPage.scss
+++ b/public/pages/blog/BlogPage.scss
@@ -6,4 +6,7 @@
* 1.0.0 - 2018/10/30
*/
.p-blog-page {
+ &__pagination {
+ padding: 6em 0;
+ }
}
diff --git a/public/pages/blog/article/ArticlePage.jsx b/public/pages/blog/article/ArticlePage.jsx
index d93ee36..80f6a92 100644
--- a/public/pages/blog/article/ArticlePage.jsx
+++ b/public/pages/blog/article/ArticlePage.jsx
@@ -22,3 +22,75 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react';
+
+import { withLanguage } from '@public/language/Language';
+import { withArticleTemplate } from '@public/blog/Blog';
+
+import Page, { PageBoundary } from '@components/page/Page';
+
+import ErrorSection from '@sections/error/ErrorSection';
+import ClearSection from '@sections/layout/ClearSection';
+
+import Loader from '@objects/loading/Loader';
+import ContentBox from '@objects/content/box/ContentBox';
+import { Title, Paragraph } from '@objects/typography/typography';
+import Image from '@objects/image/Image';
+
+import Styles from './ArticlePage.scss';
+
+export default withArticleTemplate(withLanguage(props => {
+ let { error, pending, article, lang } = props;
+ let l = lang.pages.article;
+
+
+ let children;
+ if(error) error =
;
+ if(pending) pending =
;
+
+ if(article) {
+ children = (
+
+
+ {/* Title */}
+
+
+
+
+ {/* Image */}
+
+
+
+
+
+
+ {/* Description */}
+
+
+ { article.description || article.shortDescription }
+
+
+
+
+ );
+ }
+
+ return (
+
+
+ { error }
+ { pending }
+ { children }
+
+
+ );
+}));
diff --git a/public/pages/blog/article/ArticlePage.scss b/public/pages/blog/article/ArticlePage.scss
index e69de29..b655ba5 100644
--- a/public/pages/blog/article/ArticlePage.scss
+++ b/public/pages/blog/article/ArticlePage.scss
@@ -0,0 +1,43 @@
+@import '~@styles/global';
+
+$p-article-page--spacing: 1.5em;
+
+.p-article-page {
+ &__article {
+ display: flex;
+ flex-wrap: wrap;
+ align-content: stretch;
+ }
+
+ &__header,
+ &__picture,
+ &__description
+ {
+ width: 100%;
+ }
+
+ &__picture {
+ position: relative;
+
+ &-image {width: 100%;}
+ &-box {
+ position: sticky;
+ top:0;
+ }
+ }
+
+ @include t-media-query($s-small-up) {
+ position: relative;
+ &__header {
+ margin-bottom: $p-article-page--spacing;
+ }
+ &__picture {
+ width: 40%;
+ padding-right: $p-article-page--spacing;
+ }
+ &__description {
+ width: 60%;
+ padding-left: $p-article-page--spacing;
+ }
+ }
+}
diff --git a/public/pages/contact/ContactPage.jsx b/public/pages/contact/ContactPage.jsx
index 6fae912..5e35de6 100644
--- a/public/pages/contact/ContactPage.jsx
+++ b/public/pages/contact/ContactPage.jsx
@@ -111,7 +111,7 @@ class ContactPage extends React.Component {
style="contact-page"
className="p-contact-page"
title={ lang.pages.contact.title }
- background={ require('@assets/images/banners/sunset.svg') }
+ background={ require('@assets/images/banners/hills-night.svg') }
>