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>`,
|
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"),
|
newrelic: load_var("./extra_modules/newrelic_monitor.html"),
|
||||||
getPID: server.global_page_variables.getPID,
|
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>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>IPost Privacy Policy</title>
|
<title>IPost Privacy Policy</title>
|
||||||
|
<meta name="description" content="IPosts PrivacyPolicy">
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<script>
|
<script>
|
||||||
<%- warnmessagejs %>
|
<%- warnmessagejs %>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>IPost Terms of Service</title>
|
<title>IPost Terms of Service</title>
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
|
<meta name="description" content="IPosts Terms of Service">
|
||||||
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
||||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -3,6 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>DMs</title>
|
<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) { %>
|
<% if(user.username === undefined) { %>
|
||||||
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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>
|
<title>Hall Of Fame | IPost</title>
|
||||||
<style>
|
<style>
|
||||||
<%- globalcss %>
|
<%- globalcss %>
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>IPost</title>
|
<title>IPost</title>
|
||||||
|
<meta name="description" content="<%-unauthorized_description%>">
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<style>
|
<style>
|
||||||
<%- globalcss %>
|
<%- globalcss %>
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Login | IPost</title>
|
<title>Login | IPost</title>
|
||||||
|
<meta name="description" content="Chat on IPost by logging in today">
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<link rel="stylesheet" href="/css/logon.css">
|
<link rel="stylesheet" href="/css/logon.css">
|
||||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>USERS Page</title>
|
<title>USERS Page</title>
|
||||||
|
<meta name="description" content="view other users pages on IPost today">
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
<link rel="stylesheet" href="/css/global.css">
|
<link rel="stylesheet" href="/css/global.css">
|
||||||
|
@ -3,6 +3,11 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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>
|
<title>Posts | IPost</title>
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<style>
|
<style>
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en" dir="ltr">
|
<html lang="en" dir="ltr">
|
||||||
<head>
|
<head>
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<link rel="stylesheet" href="/css/logon.css">
|
<link rel="stylesheet" href="/css/logon.css">
|
||||||
<script src="/js/warn_message.js" charset="utf-8"></script>
|
<script src="/js/warn_message.js" charset="utf-8"></script>
|
||||||
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
<script src="/js/addnavbar.js" charset="utf-8"></script>
|
||||||
<link rel="stylesheet" href="/css/global.css">
|
<link rel="stylesheet" href="/css/global.css">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Register | IPost</title>
|
<meta name="description" content="Chat on IPost by registering today">
|
||||||
<script>
|
<title>Register | IPost</title>
|
||||||
|
<script>
|
||||||
const REDIRECT_URL = "<%-query.r%>"
|
const REDIRECT_URL = "<%-query.r%>"
|
||||||
<%- httppostjs %>
|
<%- httppostjs %>
|
||||||
</script>
|
</script>
|
||||||
|
@ -5,6 +5,11 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Search</title>
|
<title>Search</title>
|
||||||
|
<% if(user.username === undefined) { %>
|
||||||
|
<meta name="description" content="<%-unauthorized_description%>">
|
||||||
|
<% } else { %>
|
||||||
|
<meta name="description" content="search IPost now">
|
||||||
|
<% } %>
|
||||||
<%- newrelic %>
|
<%- newrelic %>
|
||||||
<link rel="stylesheet" href="/css/search.css">
|
<link rel="stylesheet" href="/css/search.css">
|
||||||
<script type="text/javascript" src="/js/htmlescape.js"></script>
|
<script type="text/javascript" src="/js/htmlescape.js"></script>
|
||||||
|
@ -5,6 +5,14 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>IPost | User settings</title>
|
<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 %>
|
<%- newrelic %>
|
||||||
<link rel="stylesheet" href="/css/style.css">
|
<link rel="stylesheet" href="/css/style.css">
|
||||||
<link rel="stylesheet" href="/css/global.css">
|
<link rel="stylesheet" href="/css/global.css">
|
||||||
|
@ -5,6 +5,11 @@
|
|||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>User | IPost</title>
|
<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) { %>
|
<% if(user.username === undefined) { %>
|
||||||
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
<script> document.location.href = '/no_login?r='+encodeURIComponent(document.location.pathname) </script>
|
||||||
<% } %>
|
<% } %>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user