Browse Source

added meta stuff for google

pull/4/head
jrtechs 6 years ago
parent
commit
9c6afac779
5 changed files with 47 additions and 1 deletions
  1. +2
    -0
      includes/header.html
  2. +26
    -0
      package.json
  3. +1
    -0
      robots.txt
  4. +1
    -1
      server.js
  5. +17
    -0
      sitemap.txt

+ 2
- 0
includes/header.html View File

@ -10,6 +10,8 @@
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta name="description" content="Blog of Jeffery Russell, featuring technical guides, and projects.">
<meta name="author" content="Jeffery Russell">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">

+ 26
- 0
package.json View File

@ -0,0 +1,26 @@
{
"name": "jrtechs",
"version": "1.0.0",
"description": "Personal blog",
"main": "server.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrtechs/NodeJSBlog.git"
},
"keywords": [
"nodejs",
"blog"
],
"author": "Jeffery Russell",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrtechs/NodeJSBlog/issues"
},
"homepage": "https://github.com/jrtechs/NodeJSBlog#readme"
}

+ 1
- 0
robots.txt View File

@ -0,0 +1 @@
SITEMAP: http://jrtechs.net/sitemap.txt

+ 1
- 1
server.js View File

@ -34,7 +34,7 @@ app.use(function(request, res)
{
require("./img/image.js").main(res, filename);
}
else if(filename.includes("/css/"))
else if(filename.includes("/css/") || filename.includes(".txt"))
{
includes.sendCSS(res, filename)
}

+ 17
- 0
sitemap.txt View File

@ -0,0 +1,17 @@
http://jrtechs.net
http://www.jrtechs.net/programming/using-english-conventions-to-write-clean-code
http://www.jrtechs.net/web-development/node.js-vs-php
http://www.jrtechs.net/other/why-do-i-blog
http://www.jrtechs.net/web-development/history-of-jrtechs
http://www.jrtechs.net/web-development/why-i-stopped-using-wordpress
http://www.jrtechs.net/projects/musical-floppy-drives
http://www.jrtechs.net/projects/java-fibonacci-solver
http://www.jrtechs.net/projects/batch-minecraft-launcher-with-auto-restart
http://www.jrtechs.net/projects/ackermann-function-written-in-java
http://www.jrtechs.net/projects/time-lapse-programming-zombie-game
http://www.jrtechs.net/category/java
http://www.jrtechs.net/category/other
http://www.jrtechs.net/category/projects
http://www.jrtechs.net/category/web-development
http://www.jrtechs.net/category/hardware
http://www.jrtechs.net/category/programming

Loading…
Cancel
Save