add description meta tag
This commit is contained in:
parent
819e97a97d
commit
b2995e9939
@ -79,7 +79,8 @@ export const setup = function (router, con, server) {
|
||||
cookiebanner: `<script id="cookieyes" type="text/javascript" src="https://cdn-cookieyes.com/client_data/3cf33f6b631f3587bf83813b/script.js" async></script>`,
|
||||
newrelic: load_var("./extra_modules/newrelic_monitor.html"),
|
||||
getPID: server.global_page_variables.getPID,
|
||||
getDMPID: server.global_page_variables.getDMPID
|
||||
getDMPID: server.global_page_variables.getDMPID,
|
||||
unauthorized_description: "Chat now by creating an account on IPost"
|
||||
}
|
||||
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>IPost Privacy Policy</title>
|
||||
<meta name="description" content="IPosts PrivacyPolicy">
|
||||
<%- newrelic %>
|
||||
<script>
|
||||
<%- warnmessagejs %>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="utf-8">
|
||||
<title>IPost Terms of Service</title>
|
||||
<%- newrelic %>
|
||||
<meta name="description" content="IPosts Terms of Service">
|
||||
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||
</head>
|
||||
|
@ -3,6 +3,11 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>DMs</title>
|
||||
<% if(user.username === undefined) { %>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<% } else { %>
|
||||
<meta name="description" content="DM other people on IPost now">
|
||||
<% } %>
|
||||
<% if(user.username === undefined) { %>
|
||||
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
||||
<% } %>
|
||||
|
@ -4,6 +4,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="IPosts hall of fame">
|
||||
<title>Hall Of Fame | IPost</title>
|
||||
<style>
|
||||
<%- globalcss %>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>IPost</title>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<%- newrelic %>
|
||||
<style>
|
||||
<%- globalcss %>
|
||||
|
@ -3,6 +3,7 @@
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Login | IPost</title>
|
||||
<meta name="description" content="Chat on IPost by logging in today">
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/logon.css">
|
||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||
|
@ -5,6 +5,7 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>USERS Page</title>
|
||||
<meta name="description" content="view other users pages on IPost today">
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
|
@ -3,6 +3,11 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<% if(user.username === undefined) { %>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<% } else { %>
|
||||
<meta name="description" content="Chat on IPost now">
|
||||
<% } %>
|
||||
<title>Posts | IPost</title>
|
||||
<%- newrelic %>
|
||||
<style>
|
||||
|
@ -1,14 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/logon.css">
|
||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Register | IPost</title>
|
||||
<script>
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/logon.css">
|
||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Chat on IPost by registering today">
|
||||
<title>Register | IPost</title>
|
||||
<script>
|
||||
const REDIRECT_URL = "<%-query.r%>"
|
||||
<%- httppostjs %>
|
||||
</script>
|
||||
|
@ -5,6 +5,11 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Search</title>
|
||||
<% if(user.username === undefined) { %>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<% } else { %>
|
||||
<meta name="description" content="search IPost now">
|
||||
<% } %>
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/search.css">
|
||||
<script type="text/javascript" src="/js/htmlescape.js"></script>
|
||||
|
@ -5,6 +5,14 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>IPost | User settings</title>
|
||||
<% if(user.username === undefined) { %>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<% } else { %>
|
||||
<meta name="description" content="change your account settings on IPost now">
|
||||
<% } %>
|
||||
<% if(user.username === undefined) { %>
|
||||
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
||||
<% } %>
|
||||
<%- newrelic %>
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/global.css">
|
||||
|
@ -5,6 +5,11 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>User | IPost</title>
|
||||
<% if(user.username === undefined) { %>
|
||||
<meta name="description" content="<%-unauthorized_description%>">
|
||||
<% } else { %>
|
||||
<meta name="description" content="view your own user page">
|
||||
<% } %>
|
||||
<% if(user.username === undefined) { %>
|
||||
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
||||
<% } %>
|
||||
|
Loading…
x
Reference in New Issue
Block a user