Skip to content

Commit

Permalink
Add page for Trash AI.
Browse files Browse the repository at this point in the history
  • Loading branch information
natebass committed Dec 14, 2023
1 parent 3761b73 commit f3d4ed2
Show file tree
Hide file tree
Showing 7 changed files with 93 additions and 4 deletions.
4 changes: 3 additions & 1 deletion _includes/layouts/default-project-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@
<link rel="stylesheet" href="/public/css/pages/default-project-page.css">
{% endblock %}

{{ content }}
<div class="default-project-page-container">
{{ content }}
</div>
3 changes: 3 additions & 0 deletions _includes/navigation-bar.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
<li class="navbar-link">
<a href="/learningblocks">Learning Blocks</a>
</li>
<li class="navbar-link">
<a href="/trashai">Trash AI</a>
</li>
</ul>
</div>
<!--
Expand Down
79 changes: 79 additions & 0 deletions content/trashai/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
layout: layouts/default-project-page
---

<!--
Learning Blocks community project page.
-->

<h1 class="page-title">TrashAI community project page</h1>

<div class="project-notes">
Website: <a href="about:blank">www.trashai.org</a>
</div>

<div class="documentation-grid">
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/README.md"
title="Web-based read me">
<h2>Readme</h2>
<p>Top level overview of Learning Blocks documentation.</p>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/aws_bootstrap.png"
title="AWS bootstrap documentation">
<h2>AWS Bootstrap</h2>
<img class="default-documentation-item-image" src="/public/img/trash_ai_01.png" alt=""/>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/first_run.png"
title="First run documentation">
<h2>First run</h2>
<img class="default-documentation-item-image" src="/public/img/trash_ai_02.png" alt=""/>
</a>
</div>
<div class="documentation-item">
<a
href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/functionality.md"
title="Description of application functionality">
<h2>Description of application functionality</h2>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/git-aws-account-setup.md"
title="Git AWS account setup">
<h2>New AWS Deployment Procedure</h2>
</a>
</div>
<div class="documentation-item">
<a
href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/github-actions-deployment-role.md"
title="GitHub Actions deployment role">
<h2>GitHub Actions deployment role</h2>
<p>Describes how to update role permissions.</p>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/github-actions.md"
title="GitHub Actions">
<h2>GitHub Actions</h2>
<p>GitHub actions general documentation.</p>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/localdev.md"
title="Local development">
<h2>Local development</h2>
<p>Getting started developing Trash AI.</p>
</a>
</div>
<div class="documentation-item">
<a href="https://github.com/code4sac/trash-ai/blob/aws/trashai-staging/docs/first_run.png"
title="Role secrets">
<h2>Role secrets</h2>
<img class="default-documentation-item-image" src="/public/img/trash_ai_03.png" alt=""/>
</a>
</div>
</div>
Binary file added public/img/trash_ai_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/trash_ai_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/img/trash_ai_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions styles/pages/default-project-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@
Opensac.org page layout
*/

.page-title {
padding-top: 16px;
.default-project-page-container {
padding: 16px 16px;
}

.default-documentation-item-image {
max-width: 200px;
max-height: 200px;
}

.project-notes {
padding-bottom: 16px;
}
Expand All @@ -16,7 +22,6 @@ Opensac.org page layout
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
padding-top: 16px;
}

.documentation-item {
Expand Down

0 comments on commit f3d4ed2

Please sign in to comment.