This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #64 from RitaOak/interface-v3
- Loading branch information
Showing
10 changed files
with
336 additions
and
64 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
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,51 @@ | ||
import { html } from 'lit-element'; | ||
import sharedStyles from '../../style/testing-styles.scss'; | ||
import { PageViewElement } from './page-view-element.js'; | ||
import '@polymer/iron-icons/iron-icons.js'; | ||
import './news-feed.js'; | ||
import './sidebar.js'; | ||
|
||
class Test extends PageViewElement { | ||
static get styles() { | ||
return [sharedStyles]; | ||
} | ||
|
||
render() { | ||
return html` | ||
<div class="container main-container"> | ||
<div class="columns columns-container"> | ||
<div class="column is-one-quarter sidebar"> | ||
<div class="menu sticky"> | ||
<sidebar-nav></sidebar-nav> | ||
</div> | ||
</div> | ||
<div class="column is-three-fifths main-content"> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
<news-feed></news-feed> | ||
</div> | ||
<div class="column options"> | ||
<div class="menu sticky"> | ||
<p class="menu-label"><b>Quick Links</b></p> | ||
<ul id="menu" class="menu-list"> | ||
<li><a href="#basic">Basic SEO Checklist</a></li> | ||
<li><a href="#keyword">Keyword Research Checklist</a></li> | ||
<li><a href="#onpage">On-Page SEO Checklist</a></li> | ||
<li><a href="#content">Content Checklist</a></li> | ||
<li><a href="#technical">Technical SEO Checklist</a></li> | ||
<li><a href="#link">Link Building Checklist</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
`; | ||
} | ||
} | ||
window.customElements.define('dev-testing', Test); |
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.