Skip to content

Commit

Permalink
chore: remove blog (#2813)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcesarmobile committed Apr 22, 2020
1 parent 822b140 commit e219e69
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 169 deletions.
26 changes: 0 additions & 26 deletions site/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ export namespace Components {
'typeId'?: string;
}

interface BlogPage {}
interface BlogPageAttributes extends StencilHTMLAttributes {}

interface CapacitorSite {
'isLandingPage': boolean;
}
Expand Down Expand Up @@ -129,9 +126,6 @@ export namespace Components {
'platforms'?: string;
}

interface SiteBar {}
interface SiteBarAttributes extends StencilHTMLAttributes {}

interface SiteHeader {}
interface SiteHeaderAttributes extends StencilHTMLAttributes {}

Expand All @@ -152,7 +146,6 @@ declare global {
'AppIcon': Components.AppIcon;
'AppMarked': Components.AppMarked;
'AvcCodeType': Components.AvcCodeType;
'BlogPage': Components.BlogPage;
'CapacitorSite': Components.CapacitorSite;
'ContributorList': Components.ContributorList;
'DemosPage': Components.DemosPage;
Expand All @@ -164,7 +157,6 @@ declare global {
'NewsletterSignup': Components.NewsletterSignup;
'PluginApi': Components.PluginApi;
'PluginPlatforms': Components.PluginPlatforms;
'SiteBar': Components.SiteBar;
'SiteHeader': Components.SiteHeader;
'SiteMenu': Components.SiteMenu;
}
Expand All @@ -175,7 +167,6 @@ declare global {
'app-icon': Components.AppIconAttributes;
'app-marked': Components.AppMarkedAttributes;
'avc-code-type': Components.AvcCodeTypeAttributes;
'blog-page': Components.BlogPageAttributes;
'capacitor-site': Components.CapacitorSiteAttributes;
'contributor-list': Components.ContributorListAttributes;
'demos-page': Components.DemosPageAttributes;
Expand All @@ -187,7 +178,6 @@ declare global {
'newsletter-signup': Components.NewsletterSignupAttributes;
'plugin-api': Components.PluginApiAttributes;
'plugin-platforms': Components.PluginPlatformsAttributes;
'site-bar': Components.SiteBarAttributes;
'site-header': Components.SiteHeaderAttributes;
'site-menu': Components.SiteMenuAttributes;
}
Expand Down Expand Up @@ -223,12 +213,6 @@ declare global {
new (): HTMLAvcCodeTypeElement;
};

interface HTMLBlogPageElement extends Components.BlogPage, HTMLStencilElement {}
var HTMLBlogPageElement: {
prototype: HTMLBlogPageElement;
new (): HTMLBlogPageElement;
};

interface HTMLCapacitorSiteElement extends Components.CapacitorSite, HTMLStencilElement {}
var HTMLCapacitorSiteElement: {
prototype: HTMLCapacitorSiteElement;
Expand Down Expand Up @@ -295,12 +279,6 @@ declare global {
new (): HTMLPluginPlatformsElement;
};

interface HTMLSiteBarElement extends Components.SiteBar, HTMLStencilElement {}
var HTMLSiteBarElement: {
prototype: HTMLSiteBarElement;
new (): HTMLSiteBarElement;
};

interface HTMLSiteHeaderElement extends Components.SiteHeader, HTMLStencilElement {}
var HTMLSiteHeaderElement: {
prototype: HTMLSiteHeaderElement;
Expand All @@ -319,7 +297,6 @@ declare global {
'app-icon': HTMLAppIconElement
'app-marked': HTMLAppMarkedElement
'avc-code-type': HTMLAvcCodeTypeElement
'blog-page': HTMLBlogPageElement
'capacitor-site': HTMLCapacitorSiteElement
'contributor-list': HTMLContributorListElement
'demos-page': HTMLDemosPageElement
Expand All @@ -331,7 +308,6 @@ declare global {
'newsletter-signup': HTMLNewsletterSignupElement
'plugin-api': HTMLPluginApiElement
'plugin-platforms': HTMLPluginPlatformsElement
'site-bar': HTMLSiteBarElement
'site-header': HTMLSiteHeaderElement
'site-menu': HTMLSiteMenuElement
}
Expand All @@ -342,7 +318,6 @@ declare global {
'app-icon': HTMLAppIconElement;
'app-marked': HTMLAppMarkedElement;
'avc-code-type': HTMLAvcCodeTypeElement;
'blog-page': HTMLBlogPageElement;
'capacitor-site': HTMLCapacitorSiteElement;
'contributor-list': HTMLContributorListElement;
'demos-page': HTMLDemosPageElement;
Expand All @@ -354,7 +329,6 @@ declare global {
'newsletter-signup': HTMLNewsletterSignupElement;
'plugin-api': HTMLPluginApiElement;
'plugin-platforms': HTMLPluginPlatformsElement;
'site-bar': HTMLSiteBarElement;
'site-header': HTMLSiteHeaderElement;
'site-menu': HTMLSiteMenuElement;
}
Expand Down
17 changes: 0 additions & 17 deletions site/src/components/blog-page/blog-page.scss

This file was deleted.

81 changes: 0 additions & 81 deletions site/src/components/blog-page/blog-page.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions site/src/components/landing-page/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,6 @@ export class LandingPage {

render() {
return [
// <div class="announcement container">
// <stencil-route-link url="/blog/" >
// <span class="pill">New</span>
// <span class="message">
// Announcing Capacitor 1.0.0 Beta
// </span>
// <span class="cta">
// Read Post
// <app-icon name="caret-right"></app-icon>
// </span>
// </stencil-route-link>
// </div>,

<div class="container">
<section class="hero">
<hgroup>
Expand Down
14 changes: 0 additions & 14 deletions site/src/components/site-bar/site-bar.scss

This file was deleted.

15 changes: 0 additions & 15 deletions site/src/components/site-bar/site-bar.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions site/src/components/site-header/site-header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,6 @@ export class SiteHeader {
<stencil-route-link urlMatch="/docs" url="/docs/" onClick={() => { this.hideNav() }}>
Docs
</stencil-route-link>
{/* <stencil-route-link urlMatch="/blog" url="/blog/" onClick={() => { this.hideNav() }}>
Blog
</stencil-route-link> */}

<span
class={{
Expand Down

0 comments on commit e219e69

Please sign in to comment.