-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #155: add backup to git ignore * #155: Add node modules to ignore * #155: Add a new library for pixel unit testing * #155: Re-enable pixel unit test * #155: Re-enable pixel unit test * #177: Add 404 page and updated app router * #177: Styling 404 page * #155: updated search, testing and dv link * #155: fix typos and update creation page to use curate * #155: Add header to page not found * #155: update unit test for page-not-found * #155: Updated code owners * #155: Update home link
- Loading branch information
Showing
22 changed files
with
276 additions
and
79 deletions.
There are no files selected for viewing
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,2 +1,2 @@ | ||
* @tholulomo @aswallace @stouffers | ||
/whyis/ @jpmccu @roryschadler | ||
/whyis/ @jpmccu @tholulomo |
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 @@ | ||
node_modules |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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,42 @@ | ||
<template> | ||
<div> | ||
<header class="header"> | ||
<div class="wrapper"> | ||
<router-link to="/" class="header-logo"> | ||
<div class=""> | ||
<img src="@/assets/img/materialsmine_logo.png" alt="MaterialsMine Logo"> | ||
</div> | ||
</router-link> | ||
<div class="nav_mobile-icon"> | ||
<div class="nav_mobile-icon-menu"></div> | ||
</div> | ||
<div class="header_nav"> | ||
<div class="nav nav_menu u--inline"> | ||
<ul> | ||
<li><a href="/nm">NanoMine</a></li> | ||
<li><a href="/mm">MetaMine</a></li> | ||
</ul> | ||
</div> | ||
<div class="u--inline"> | ||
<div v-if="$store.getters.isAuthenticated" class="nav_menu--container"> | ||
<a class="u--default-size nav_menu--handler" style="color:#fff; font-size:1.2rem !important;"> | ||
<i class="material-icons" style="vertical-align: middle;">perm_identity</i> | ||
</a> | ||
<div class="nav_menu--siblings nav_menu--sibheader"> | ||
<span class="nav_menu--siblings-lists" @click="$store.dispatch('logout')"><a>Logout</a></span> | ||
</div> | ||
</div> | ||
<div v-else> | ||
<a class="btn btn--tertiary btn--noradius">Login/Register</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
<div class="page-not-found"> | ||
<h1 class="page-not-found-header u_margin-bottom-small">Oops!</h1> | ||
<h2 class="u_margin-top-med u_margin-bottom-small">404 - Page Not Found</h2> | ||
<p>The page you are looking for might have been removed, had its name changed or is temporarily unavailable. Would you like to go back to <router-link to=""><a @click="$router.go(-1)">previous page</a></router-link>?</p> | ||
</div> | ||
</div> | ||
</template> |
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
Oops, something went wrong.