Skip to content

Commit 8d55df0

Browse files
niklas-wortmannbenlesh
authored andcommitted
docs(announcements): add announcement for rxjs live (#4938)
1 parent 14a018a commit 8d55df0

File tree

5 files changed

+114
-1
lines changed

5 files changed

+114
-1
lines changed
Lines changed: 88 additions & 0 deletions
Loading
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[
2+
{
3+
"startDate": "2019-07-01",
4+
"endDate": "2019-09-06",
5+
"message": "<strong style=\"font-weight: 700\" class=\"text-headline\">World's first RxJS conference</strong><br/>September 5th-6th, 2019",
6+
"imageUrl": "generated/images/marketing/home/rxjs-live.svg",
7+
"linkUrl": "https://www.rxjs.live/"
8+
}
9+
]

docs_app/content/marketing/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ <h1 class="no-anchor no-toc" style="display: none"></h1>
3333

3434
<div class="home-rows">
3535

36+
<aio-announcement-bar></aio-announcement-bar>
37+
3638
<!-- Group 1 -->
3739
<div layout="row" layout-xs="column" class="home-row homepage-container">
3840

docs_app/src/styles/1-layouts/_marketing-layout.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ section#intro {
156156
margin: 8px;
157157
}
158158

159+
img {
160+
filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.26));
161+
}
162+
159163
.button {
160164
display: flex;
161165
justify-content: center;
@@ -184,6 +188,10 @@ section#intro {
184188
}
185189

186190
p {
191+
strong {
192+
font-weight: 700;
193+
}
194+
187195
font-size: 16px;
188196
margin: 8px;
189197
text-align: center;

docs_app/tools/transforms/angular-content-package/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ module.exports = new Package('angular-content', [basePackage, contentPackage])
4343
include: CONTENTS_PATH + '/marketing/contributors.json',
4444
fileReader: 'jsonFileReader'
4545
},
46+
{
47+
basePath: CONTENTS_PATH,
48+
include: CONTENTS_PATH + '/marketing/announcements.json',
49+
fileReader: 'jsonFileReader'
50+
},
4651
]);
4752

4853
})
@@ -65,7 +70,8 @@ module.exports = new Package('angular-content', [basePackage, contentPackage])
6570
outputPathTemplate: '${path}.json'
6671
},
6772
{docTypes: ['navigation-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
68-
{docTypes: ['contributors-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'}
73+
{docTypes: ['contributors-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'},
74+
{docTypes: ['announcements-json'], pathTemplate: '${id}', outputPathTemplate: '../${id}.json'}
6975
]);
7076
})
7177

0 commit comments

Comments
 (0)