From 6ffe0c530d07548dcbba08d444f215677510ff07 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 15 Dec 2020 18:34:14 -0600 Subject: [PATCH] Simplifying html tags code. --- src/shared/components/html-tags.tsx | 38 +++++++++++------------------ 1 file changed, 14 insertions(+), 24 deletions(-) diff --git a/src/shared/components/html-tags.tsx b/src/shared/components/html-tags.tsx index ff30fb3..fbde148 100644 --- a/src/shared/components/html-tags.tsx +++ b/src/shared/components/html-tags.tsx @@ -17,39 +17,29 @@ export class HtmlTags extends Component { return ( - {/* Primary Meta Tags */} - + {['title', 'og:title', 'twitter:title'].map(t => ( + + ))} + {['og:url', 'twitter:url'].map(u => ( + + ))} {/* Open Graph / Facebook */} - - {/* Twitter */} - - {/* Optional desc and images */} - {this.props.description && [ - , - , - , - ]} + {this.props.description && + ['description', 'og:description', 'twitter:description'].map(n => ( + + ))} - {this.props.image && [ - , - , - ]} + {this.props.image && + ['og:image', 'twitter:image'].map(p => ( + + ))} ); } -- 2.44.1