forked from 18F/methods
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Scott Weber
committed
May 22, 2017
1 parent
e7a3506
commit f676a24
Showing
228 changed files
with
8,162 additions
and
1,574 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,58 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
colorator (0.1) | ||
ffi (1.9.10) | ||
go_script (0.1.9) | ||
bundler (~> 1.10) | ||
safe_yaml (~> 1.0) | ||
guides_style_18f (0.4.8) | ||
jekyll | ||
jekyll_pages_api | ||
jekyll_pages_api_search | ||
rouge | ||
sass | ||
htmlentities (4.3.4) | ||
jekyll (3.1.6) | ||
colorator (~> 0.1) | ||
addressable (2.5.1) | ||
public_suffix (~> 2.0, >= 2.0.2) | ||
colorator (1.1.0) | ||
ffi (1.9.18) | ||
forwardable-extended (2.6.0) | ||
hash-joiner (0.0.7) | ||
safe_yaml | ||
jekyll (3.4.3) | ||
addressable (~> 2.4) | ||
colorator (~> 1.0) | ||
jekyll-sass-converter (~> 1.0) | ||
jekyll-watch (~> 1.1) | ||
kramdown (~> 1.3) | ||
liquid (~> 3.0) | ||
mercenary (~> 0.3.3) | ||
pathutil (~> 0.9) | ||
rouge (~> 1.7) | ||
safe_yaml (~> 1.0) | ||
jekyll-redirect-from (0.11.0) | ||
jekyll (>= 2.0) | ||
jekyll-sass-converter (1.4.0) | ||
jekyll-last-modified-at (1.0.1) | ||
jekyll (~> 3.3) | ||
posix-spawn (~> 0.3.9) | ||
jekyll-sass-converter (1.5.0) | ||
sass (~> 3.4) | ||
jekyll-watch (1.4.0) | ||
jekyll-watch (1.5.0) | ||
listen (~> 3.0, < 3.1) | ||
jekyll_pages_api (0.1.6) | ||
htmlentities (~> 4.3) | ||
jekyll (>= 2.0, < 4.0) | ||
jekyll_pages_api_search (0.4.4) | ||
jekyll_pages_api (~> 0.1.4) | ||
sass (~> 3.4) | ||
kramdown (1.11.1) | ||
kramdown (1.13.2) | ||
liquid (3.0.6) | ||
listen (3.0.8) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
mercenary (0.3.6) | ||
rb-fsevent (0.9.7) | ||
rb-inotify (0.9.7) | ||
pathutil (0.14.0) | ||
forwardable-extended (~> 2.6) | ||
posix-spawn (0.3.13) | ||
public_suffix (2.0.5) | ||
rb-fsevent (0.9.8) | ||
rb-inotify (0.9.8) | ||
ffi (>= 0.5.0) | ||
redcarpet (3.3.4) | ||
redcarpet (3.4.0) | ||
rouge (1.11.1) | ||
safe_yaml (1.0.4) | ||
sass (3.4.22) | ||
sass (3.4.23) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
go_script | ||
guides_style_18f | ||
hash-joiner | ||
jekyll | ||
jekyll-redirect-from | ||
jekyll-last-modified-at | ||
redcarpet | ||
rouge | ||
|
||
BUNDLED WITH | ||
1.12.5 | ||
1.14.2 |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% assign discover_methods = (site.methods | where: "category", "Discover" ) %} | ||
{% assign decide_methods = (site.methods | where: "category", "Decide" ) %} | ||
{% assign make_methods = (site.methods | where: "category", "Make" ) %} | ||
{% assign validate_methods = (site.methods | where: "category", "Validate" ) %} | ||
{% assign fundamentals_methods = (site.methods | where: "category", "Fundamentals" ) %} | ||
{% assign category_methods = (site.methods | where: "category", page.title ) %} | ||
|
||
<! -- This is used for setting category variables --> | ||
{% capture var-category-name %}{{ page.category | downcase }}_methods{% endcapture %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
|
||
|
||
<section class="category category--discover usa-section" id="discover"> | ||
<div class="usa-grid"> | ||
<header class="category--header"> | ||
<h1 class="category--title">Discover</h1> | ||
<p class="category--subtitle">Methods to build empathy for the project and people involved.</p> | ||
</header> | ||
{% for method in discover_methods %} | ||
{% include method.html method=method %} | ||
{% endfor %} | ||
</div> | ||
</section> | ||
|
||
|
||
|
||
|
||
<section class="category category--decide usa-section" id="decide"> | ||
<div class="usa-grid"> | ||
<header class="category--header"> | ||
<h1 class="category--title">Decide</h1> | ||
<p class="category--subtitle">Methods for focusing the design effort.</p> | ||
</header> | ||
{% for method in decide_methods %} | ||
{% include method.html method=method %} | ||
{% endfor %} | ||
</div> | ||
</section> | ||
<section class="category category--make usa-section" id="make"> | ||
<div class="usa-grid"> | ||
<header class="category--header"> | ||
<h1 class="category--title">Make</h1> | ||
<p class="category--subtitle">Methods for creating a testable solution.</p> | ||
</header> | ||
{% for method in make_methods %} | ||
{% include method.html method=method %} | ||
{% endfor %} | ||
</div> | ||
</section> | ||
<section class="category category--validate usa-section" id="validate"> | ||
<div class="usa-grid"> | ||
<header class="category--header"> | ||
<h1 class="category--title">Validate</h1> | ||
<p class="category--subtitle">Methods for testing a design hypothesis.</p> | ||
</header> | ||
{% for method in validate_methods %} | ||
{% include method.html method=method %} | ||
{% endfor %} | ||
</div> | ||
</section> | ||
<section class="category category--fundamentals usa-section" id="fundamentals"> | ||
<div class="usa-grid"> | ||
<header class="category--header"> | ||
<h1 class="category--title">Fundamentals</h1> | ||
<p class="category--subtitle">Foundational methods for practicing design research.</p> | ||
</header> | ||
{% for method in fundamentals_methods %} | ||
{% include method.html method=method %} | ||
{% endfor %} | ||
</div> | ||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
<footer role="contentinfo"> | ||
<div class="wrap"> | ||
<p>This project is maintained by <a href="{{ site.author.url }}">{{ site.author.name }}</a>.</p> | ||
<p>To share your feedback with us, open an issue or pull request on our <a href="https://github.com/18F/methods">GitHub repository.</a></p> | ||
<p>Hosted on <a href="https://github.com/18F/pages/">18F Pages</a>.</p> | ||
The <a href="https://github.com/18F/guides-template/">18F Guides theme</a> is based on <a href="https://github.com/cfpb/docter/">DOCter</a> from <a href="http://cfpb.github.io/">CFPB</a>.</p> | ||
</div><!--/.wrap --> | ||
<div class="usa-overlay"></div> | ||
<footer class="site-footer no-print"> | ||
<div class="usa-grid"> | ||
<p>This project is maintained by <a href="https://18f.gsa.gov">18F</a>.</p> | ||
<p>To share your feedback with us, open an issue or pull request on our <a href="https://github.com/18F/methods">GitHub repository.</a></p> | ||
</div> | ||
</footer> | ||
<!-- Google Analytics --> | ||
<script> | ||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); | ||
ga('create', 'UA-48605964-19', 'auto'); | ||
|
||
// anonymize user IPs (chops off the last IP triplet) | ||
ga('set', 'anonymizeIp', true); | ||
ga('set', 'forceSSL', true); | ||
ga('send', 'pageview'); | ||
</script> | ||
|
||
<!-- Digital Analytics Program roll-up, see https://analytics.usa.gov for data --> | ||
<script id="_fed_an_ua_tag" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=GSA"></script> |
Oops, something went wrong.