Skip to content

Commit f2b9c3f

Browse files
Merge pull request #12 from GradleUp/blog
Add Blog references + Landing styles
2 parents b398e43 + fe3399b commit f2b9c3f

File tree

4 files changed

+43
-2
lines changed

4 files changed

+43
-2
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.10.4-slim-buster
22

3-
RUN apt-get update
3+
RUN apt-get clean all && apt-get update
44
RUN apt-get install -y libsass-dev build-essential libcairo2 git libpango-1.0-0 libpangoft2-1.0-0 pangocairo-1.0 pngquant
55

66
COPY requirements.txt /build/requirements.txt

docs/community/participate.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
1-
# GradleUp Community Channels
1+
---
2+
title: Participate in GradleUp
3+
description: >
4+
Subscribe to the GradleUp news,
5+
join the discussions on Slack and GitHub issues
6+
---
27

38
[![Slack: GradleUp on the Gradle Community Slack](https://img.shields.io/badge/Slack-%23gradleup-brightgreen?style=flat&logo=slack)](./#slack)
49

10+
Subscribe to the GradleUp news, join the discussions on Slack and GitHub issues.
11+
All code and non-code contributions are welcome!
12+
13+
## News
14+
15+
We have a blog on [blog.gradleup.com](https://blog.gradleup.com/).
16+
There we will be publishing the key updates on what's up in GradleUp.
17+
You can also subscribe to the blog as a [newsletter](https://blog.gradleup.com/newsletter)
18+
or [RSS feed](https://blog.gradleup.com/rss.xml).
19+
20+
Guest posts by GradleUp users and component maintainers are welcome, too!
21+
Reach out to us on Slack if interested
22+
523
## GitHub Issues
624

725
Each project repository has GitHub Issues enabled.

mkdocs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ nav:
3737
- Contributing to the Website: ./CONTRIBUTING.md
3838
- Governance: docs/community/governance.md
3939
- Code of Conduct: org/CODE_OF_CONDUCT.md
40+
- Blog: https://blog.gradleup.com/
4041
- Resources:
4142
- Community Support: org/SUPPORT.md
4243
- Security Policy: org/SECURITY.md
@@ -176,6 +177,13 @@ extra:
176177
- icon: fontawesome/brands/slack
177178
link: https://gradleup.com/docs/community/participate/#slack
178179
name: Slack
180+
- icon: /fontawesome/solid/blog
181+
link: https://blog.gradleup.com
182+
name: Blog
183+
- icon: /fontawesome/solid/rss
184+
link: https://blog.gradleup.com/rss.xml
185+
name: Blog - RSS
186+
179187
# analytics:
180188
# provider: google
181189
# property: TODO

overrides/home.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@
5555

5656
.mdx-hero__buttons {
5757
margin-bottom: 20px;
58+
59+
}
60+
61+
.md-button {
62+
margin-left: 5px;
63+
margin-right: 5px;
5864
}
5965

6066
.mdx-container {
@@ -69,6 +75,12 @@
6975
text-align:center;
7076
}
7177
}
78+
79+
[data-md-color-scheme="slate"] {
80+
.md-button {
81+
color: #f8f8f8;
82+
}
83+
}
7284
</style>
7385

7486
<section class="mdx-container">
@@ -85,6 +97,9 @@ <h1>GradleUp</h1>
8597
<a href="{{ 'projects/' | url }}" title="Our Projects" class="md-button md-button--primary">
8698
Our Projects
8799
</a>
100+
<a href="https://blog.gradleup.com/" target="_blank" title="Blog" class="md-button">
101+
Blog
102+
</a>
88103
<a href="{{ 'docs/community/participate/' | url }}" title="Participate" class="md-button">
89104
Contributing
90105
</a>

0 commit comments

Comments
 (0)