Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 7441f16

Browse files
teresahunaomiblack
authored andcommitted
Added placeholder content to News page
1 parent 752465c commit 7441f16

File tree

3 files changed

+107
-2
lines changed

3 files changed

+107
-2
lines changed

public/news.jade

Lines changed: 54 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,67 @@
1-
.grid-fluid.l-space-bottom-8
1+
.grid-fluid.l-space-bottom-4
22
.c12.text-center
33
h3.text-headline.text-uppercase Angular
44
.c12.text-center
55
figure
66
img(src="/resources/images/logos/standard/shield-large.svg" alt="Us" style="width:80px;")
77
.clear
8+
9+
.grid-fluid
10+
.c6
11+
.article-card
12+
.date December 8, 2015
13+
.title Building Mobile Apps with Angular 2 and NativeScript
14+
p Hi! I’m TJ from the NativeScript team at Telerik. We’ve been working with the Angular team for the greater part of this year to integrate Angular 2 into NativeScript, which together let you write native iOS and Android apps using your existing web and Angular...
15+
img(src="/resources/images/bios/brad-green.jpg")
16+
.posted Posted <strong>Yesterday</strong> by <a href="#">Brad Green</a>
17+
.c6
18+
.article-card
19+
.date November 30, 2015
20+
.title How Google Uses Angular 2 with Dart
21+
p Google is always busy building new web apps, and recently a lot of that development is using Angular 2 for Dart. Just last week, the Google Fiber team launched Google’s first production Angular 2 app, written in Dart. Take a look at their just-launched Angular 2 for Dart app.
22+
.author
23+
img(src="/resources/images/bios/brian-ford.jpg")
24+
.posted Posted <strong>1 week ago</strong> by <a href="#">Brian Ford</a>
825

9-
.grid-fluid.l-space-bottom-8
26+
.grid-fluid.l-space-top-6
1027
.c12.text-center
1128
h3.text-headline.text-uppercase Angular GDE (Google Developer Expert)
1229
.c12.text-center
1330
figure
1431
img(src="/resources/images/logos/standard/angular-gde-logo@2x.png" alt="Us" style="width:80px;")
1532
.clear
33+
34+
.grid-fluid.l-space-bottom-2.l-space-top-4
35+
.c6
36+
.article-card
37+
.date November 19, 2015
38+
.title VS Code Angular Snippets
39+
p Visual Studio Code Beta is available and it supports extensions! I published my first 2 extensions for creating Angular 1 and 2 snippets. You can grab these from the marketplace or right from VS Code.
40+
.author
41+
img(src="/resources/images/bios/john-papa.jpg")
42+
.posted Posted <strong>3 weeks ago</strong> by <a href="#">John Papa</a>
43+
.c6
44+
.article-card
45+
.date April 4, 2015
46+
.title Angular 2 singleton service
47+
p Angular 2 is out and everybody is creating some tutorials about how to start playing with it and I must say this... it’s terribly funny!
48+
.author
49+
img(src="/resources/images/bios/patrick-stapleton.jpg")
50+
.posted Posted <strong>8 months ago</strong> by <a href="#">Patrick Stapleton</a>
51+
.grid-fluid.l-space-bottom-4
52+
.c6
53+
.article-card
54+
.date October 25, 2015
55+
.title Integrating Web Components with AngularJS
56+
p Just a few days ago I had the honour to give a talk together with the awesome Carmen at the first european AngularJS conference ngEurope.
57+
.author
58+
img(src="/resources/images/bios/pascalprecht.jpg")
59+
.posted Posted <strong>14 months ago</strong> by <a href="#">Pascal Precht</a>
60+
.c6
61+
.article-card
62+
.date November 19, 2015
63+
.title VS Code Angular Snippets
64+
p Visual Studio Code Beta is available and it supports extensions! I published my first 2 extensions for creating Angular 1 and 2 snippets. You can grab these from the marketplace or right from VS Code.
65+
.author
66+
img(src="/resources/images/bios/john-papa.jpg")
67+
.posted Posted <strong>3 weeks ago</strong> by <a href="#">John Papa</a>

public/resources/css/main.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
@import 'module/cheatsheet';
4848
@import 'module/filetree';
4949
@import 'module/support';
50+
@import 'module/article-card';
5051

5152

5253
/*
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
.article-card {
2+
margin: 0px 0px ($unit * 4) 0px;
3+
padding: ($unit * 2);
4+
background: lighten($mist, 3%);
5+
border-radius: ($unit / 2);
6+
min-height: 330px;
7+
position: relative;
8+
@media handheld and (max-width: $phone-breakpoint),
9+
screen and (max-device-width: $phone-breakpoint),
10+
screen and (max-width: $tablet-breakpoint) {
11+
padding: ($unit * 2) ($unit * 1);
12+
}
13+
a {
14+
text-decoration: none;
15+
}
16+
strong {
17+
color: darken($darkgrey, 5%);
18+
font-weight: 400;
19+
}
20+
&:last-child {
21+
margin: 0;
22+
}
23+
.date {
24+
text-transform: uppercase;
25+
margin-bottom: $unit;
26+
}
27+
.title {
28+
font-size: 20px;
29+
color: $regal;
30+
}
31+
p, .date {
32+
font-size: 16px;
33+
color: darken($darkgrey, 5%);
34+
}
35+
.posted {
36+
color: $bismark;
37+
font-size: 16px;
38+
display: inline;
39+
padding-left: 10px;
40+
}
41+
img {
42+
width: 40px;
43+
height: 40px;
44+
border-radius: 50% 50%;
45+
display: inline;
46+
vertical-align: middle;
47+
}
48+
.author {
49+
position: absolute;
50+
bottom: 20px;
51+
}
52+
}

0 commit comments

Comments
 (0)