├── .DS_Store ├── .gitignore ├── 404.php ├── LICENSE ├── Makefile ├── README.md ├── bootstrap.css ├── bootstrap.min.css ├── code.png ├── data.png ├── docs ├── assets │ ├── css │ │ └── docs.css │ ├── ico │ │ ├── bootstrap-apple-114x114.png │ │ ├── bootstrap-apple-57x57.png │ │ ├── bootstrap-apple-72x72.png │ │ └── favicon.ico │ ├── img │ │ ├── bird.png │ │ ├── browsers.png │ │ ├── example-diagram-01.png │ │ ├── example-diagram-02.png │ │ ├── example-diagram-03.png │ │ ├── grid-18px.png │ │ └── twitter-logo-no-bird.png │ └── js │ │ ├── application.js │ │ └── google-code-prettify │ │ ├── prettify.css │ │ └── prettify.js ├── index.html └── javascript.html ├── examples ├── container-app.html └── fluid.html ├── footer.php ├── frontpage.php ├── functions.php ├── github_logo.png ├── github_logo_vert.png ├── guide.php ├── header.php ├── index.php ├── js ├── bootstrap-alerts.js ├── bootstrap-buttons.js ├── bootstrap-dropdown.js ├── bootstrap-modal.js ├── bootstrap-popover.js ├── bootstrap-scrollspy.js ├── bootstrap-tabs.js ├── bootstrap-twipsy.js ├── jquery-1.7.1.min.js ├── jquery.tablesorter.min.js ├── jquery.twitter.js └── tests │ ├── index.html │ ├── unit │ ├── bootstrap-alerts.js │ ├── bootstrap-buttons.js │ ├── bootstrap-dropdown.js │ ├── bootstrap-modal.js │ ├── bootstrap-popover.js │ ├── bootstrap-scrollspy.js │ ├── bootstrap-tabs.js │ └── bootstrap-twipsy.js │ └── vendor │ ├── qunit.css │ └── qunit.js ├── lib ├── bootstrap.less ├── forms.less ├── mixins.css ├── mixins.less ├── patterns.less ├── reset.css ├── reset.less ├── scaffolding.less ├── tables.less ├── type.less ├── variables.css └── variables.less ├── meatball.png ├── meta.json ├── octonaut.png ├── project-redirect.php ├── projects-old.php ├── searchform.php ├── share.php ├── single-code_projects.php ├── style.css └── style.less /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa/code.nasa.gov_legacy/cd22d86586d3a51bf89ddc9cc7a0c523c4b51c22/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | wp-config.php 3 | wp-content/uploads/ 4 | wp-content/blogs.dir/ 5 | wp-content/upgrade/ 6 | wp-content/backup-db/ 7 | wp-content/advanced-cache.php 8 | wp-content/wp-cache-config.php 9 | sitemap.xml 10 | *.log 11 | wp-content/cache/ 12 | wp-content/backups/ 13 | sitemap.xml 14 | sitemap.xml.gz -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 2 |
FROM SPACE!!!'); ?>
4 | 5 |