Skip to content
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

adding a few web usage post placeholders. #123

Merged
merged 1 commit into from
Oct 21, 2020
Merged
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
29 changes: 0 additions & 29 deletions .github/workflows/check_links.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ http://localhost:4000<BR><BR>
To test that all links work, and all images have alt-tags, and similar issues - run this from the top-level directory (where this README file is):<BR>
`./script/test_images_links.sh` <BR><BR>

You must have [htmlproofer](https://github.com/gjtorikian/html-proofer) installed for this to work properly.

## Style guide
<BR><BR>
The style guide includes notes on accessibility, and can be seen in the [style](https://wildaid.github.io/style) directory.
26 changes: 26 additions & 0 deletions _layouts/postWebUse.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<!-- <p class="meta">{{ page.date | date_to_string }}</p> -->

<div class="post">
{{ content }}
</div>

<div class="PageNavigation">
{% if page.previous.site=='useWeb' %}
{% if page.previous.url %}
{ <a class="prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a> }
{% endif %}
{% endif %}
{% if page.next.site=='useWeb' %}
{% if page.next.url %}
{ <a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a> }
{% endif %}
{% endif %}
</div>
<BR>
<!-- <div class="getting-help">
<A HREF="/problems">Troubleshooting</a>
</div> -->
22 changes: 22 additions & 0 deletions _posts/useWeb/2020-09-01-HomeScreen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
layout: postWebUse
title: "Home Screen"
date: 2020-09-01 01:00:00 -0400
categories: preboarding
site: useWeb
---

* Table of contents
{:toc}

This page needs to be fleshed out.

# The Home Screen
Describe home screen here - dashboards, etc.
<BR><BR>

# Logging Out
To log out, click your avatar or name, and then click "Log Out" to be directed back to the login screen.

<!-- <img src="/assets/images/use/.png" width="50%" style="border:1px solid black"><BR><BR> -->

11 changes: 11 additions & 0 deletions _posts/useWeb/2020-09-01-Login.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
layout: postWebUse
title: "Logging in"
date: 2020-09-01 00:00:00 -0400
site: useWeb
---

Enter the username and password you were assigned and click the "Log In" button.

more instructions need to be written here.

6 changes: 4 additions & 2 deletions pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ Fixes #
<!--- Please check off any appropriate boxes by replacing the whitespace with an `x` in the box -->
- [ ] I have read the [contributor's guide](https://wildaid.github.io/contribute/index.html).
- [ ] I linked an issue in the previous section
- [ ] I have commented on the linked issue
- [ ] I was assigned the linked issue (not required)
- [ ] I was assigned the linked issue or commented on it to be assigned (not required)
- [ ] I have tested the change to the best of my ability against the [sandbox](https://bit.ly/ofishsandbox) or a [local build](https://wildaid.github.io/build).
- [ ] I ran script/test_images_links.sh from the top-level directory (where the README file lives) and the output is:



* **Optional: Add any explanations here**

Expand Down