Skip to content

Showcase as landing page proposal #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/* - https://github.com/appernetic/hugo-nederburg-theme/blob/master/LICENSE */

html {
background-color: #2f3360;
background-color: #2e2459;
text-align: center;
}

Expand All @@ -22,8 +22,8 @@ main a:hover {
}

body > header {
padding-top: 1.5em;
padding-bottom: 1.5em;
padding-top: 2em;
padding-bottom: 2em;

color: #fff;
color: rgba(255, 255, 255, 0.75);
Expand Down Expand Up @@ -73,7 +73,7 @@ li a {
text-align: right;

position: absolute;
top: 1.5em;
top: 2em;
right: 0;
}

Expand Down Expand Up @@ -112,6 +112,10 @@ li a {
line-height: 1.5;
}

.title > a + p {
margin-top: 2em;
}

body {
font-family: 'Fira Sans', sans-serif;
font-size: 16px;
Expand Down
12 changes: 10 additions & 2 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta name="description" content="Awesome embedded projects by the Rust community!">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#2f3360" />
<meta name="theme-color" content="#2e2459" />
<title>Embedded Rust Showcase</title>
</head>

Expand All @@ -16,7 +16,12 @@
<a href="">Embedded Rust Showcase</a>

<p>
Awesome embedded projects by the Rust community!
We are an official working group of the <a href="https://www.rust-lang.org">Rust language</a>
focusing on improving the end-to-end experience of using Rust in resource-constrained
environments and non-traditional platforms.
Comment on lines +19 to +21
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
We are an official working group of the <a href="https://www.rust-lang.org">Rust language</a>
focusing on improving the end-to-end experience of using Rust in resource-constrained
environments and non-traditional platforms.
We are an official working group of the <a href="https://www.rust-lang.org">Rust language</a>
focusing on improving the end-to-end experience of using Rust in resource-constrained
environments and non-traditional platforms. For more information on our tools, libraries, and other
projects, see our <a href="https://github.com/rust-embedded/wg">GitHub page</a>. If you want to
get started writing embedded Rust, check out <a href="https://docs.rust-embedded.org/">
our documentation</a>.

</p>
<p>
Here is a list of awesome embedded projects by the Rust community!
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Here is a list of awesome embedded projects by the Rust community!
This page is a showcase for embedded Rust projects from the community; you can browse the source code for all the projects below to see some examples of complete embedded projects written in Rust.

</p>
</div>

Expand All @@ -28,6 +33,9 @@
<li>
<a href="https://github.com/rust-embedded/awesome-embedded-rust">Build</a>
</li>
<li>
<a href="https://github.com/rust-embedded">Coordinate</a>
</li>
<li>
<a href="https://github.com/rust-embedded/showcase">Submit</a>
</li>
Expand Down