Skip to content

Commit

Permalink
Merge pull request #23 from zwrawr/master
Browse files Browse the repository at this point in the history
changed from .tech to .co.uk
  • Loading branch information
zwrawr authored Apr 20, 2019
2 parents 57ea2e3 + cac40be commit 3c22780
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Source/Data/about.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Blog_Link]: https://blog.zakwest.tech
[Blog_Link]: https://blog.zakwest.co.uk
[LD_Link]: http://ludumdare.com
[Me_Img]: /img/Headshot.jpg
[Files_Link]: /Files
Expand Down
2 changes: 1 addition & 1 deletion Source/Data/home.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells" : [

{
"address" : "https://blog.zakwest.tech" ,
"address" : "https://blog.zakwest.co.uk" ,
"target" : "_blank",
"rel" : "noopener",
"title" : "Blog",
Expand Down
4 changes: 2 additions & 2 deletions Source/Data/markdowntest.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ Nullam egestas ullamcorper massa, sed euismod sapien semper laoreet. Etiam preti
## Images

Inline-style:
![alt text](https://www.zakwest.tech/images/links_images/blog_screenshot_square.png "Logo Title Text 1")
![alt text](https://www.zakwest.co.uk/images/links_images/blog_screenshot_square.png "Logo Title Text 1")

Reference-style:
![alt text][logo]

[logo]: https://www.zakwest.tech/images/links_images/blog_screenshot_square.png "Logo Title Text 2"
[logo]: https://www.zakwest.co.uk/images/links_images/blog_screenshot_square.png "Logo Title Text 2"

## Code
This code's language is set to C
Expand Down
1 change: 1 addition & 0 deletions Source/Views/Partials/head.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<meta name="theme-color" content="#2ecc71"/>

<meta name="google-site-verification" content="DJ6vqzS2HP9H4Lv9FbOcBbw9xuSR8hA8xDzbvYQc2R8" />

<meta name="Description" content="{{desc}}"/>

Expand Down
6 changes: 3 additions & 3 deletions Source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ app.get('/',function(req,res){
"home" : autoJson.getJson('Built/Data/home.json'),
"head" : {
"title" : "Home",
"desc" : "Homepage for zakwest.tech, see all the places you can find me on the web"
"desc" : "Homepage for Zak West see all the places you can find me on the web"
}
};

Expand All @@ -88,7 +88,7 @@ app.get('/files',function(req,res){
"files" : autoJson.getJson('Built/Data/files.json'),
"head" : {
"title" : "Downloads",
"desc" : "Download files from zakwest.tech"
"desc" : "Download files from Zak West"
}
};

Expand Down Expand Up @@ -135,7 +135,7 @@ app.get('/pages/:page',function(req,res,next){

// Redirect to /blog to blog.zakwest.tech
app.get('/blog', function(req,res){
return res.redirect(303, "https://blog.zakwest.tech");
return res.redirect(303, "https://blog.zakwest.co.uk");
});

// 404 page
Expand Down

0 comments on commit 3c22780

Please sign in to comment.