Skip to content

Commit 2b9aa62

Browse files
committed
Create
1 parent b7d01ca commit 2b9aa62

10 files changed

+317
-0
lines changed

_config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
title: My GitHub Pages Site
2+
description: This is my GitHub Pages site with a theme.
3+
theme: minima
4+
plugins:
5+
- jekyll-github-metadata

blog/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor
6+
Gemfile.lock

blog/404.html

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: page
4+
---
5+
6+
<style type="text/css" media="screen">
7+
.container {
8+
margin: 10px auto;
9+
max-width: 600px;
10+
text-align: center;
11+
}
12+
h1 {
13+
margin: 30px 0;
14+
font-size: 4em;
15+
line-height: 1;
16+
letter-spacing: -1px;
17+
}
18+
</style>
19+
20+
<div class="container">
21+
<h1>404</h1>
22+
23+
<p><strong>Page not found :(</strong></p>
24+
<p>The requested page could not be found.</p>
25+
</div>

blog/Gemfile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
source "https://rubygems.org"
2+
# Hello! This is where you manage which Jekyll version is used to run.
3+
# When you want to use a different version, change it below, save the
4+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
5+
#
6+
# bundle exec jekyll serve
7+
#
8+
# This will help ensure the proper Jekyll version is running.
9+
# Happy Jekylling!
10+
#gem "jekyll", "~> 4.4.1"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
gem "minima", "~> 2.5"
13+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
14+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
15+
gem "github-pages", "~> 232", group: :jekyll_plugins
16+
# If you have any plugins, put them here!
17+
group :jekyll_plugins do
18+
gem "jekyll-feed", "~> 0.12"
19+
end
20+
21+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
22+
# and associated library.
23+
platforms :mingw, :x64_mingw, :mswin, :jruby do
24+
gem "tzinfo", ">= 1", "< 3"
25+
gem "tzinfo-data"
26+
end
27+
28+
# Performance-booster for watching directories on Windows
29+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
30+
31+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
32+
# do not have a Java counterpart.
33+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

blog/_config.yml

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Welcome to Jekyll!
2+
#
3+
# This config file is meant for settings that affect your whole blog, values
4+
# which you are expected to set up once and rarely edit after that. If you find
5+
# yourself editing this file very often, consider using Jekyll's data files
6+
# feature for the data you need to update frequently.
7+
#
8+
# For technical reasons, this file is *NOT* reloaded automatically when you use
9+
# 'bundle exec jekyll serve'. If you change this file, please restart the server process.
10+
#
11+
# If you need help with YAML syntax, here are some quick references for you:
12+
# https://learn-the-web.algonquindesign.ca/topics/markdown-yaml-cheat-sheet/#yaml
13+
# https://learnxinyminutes.com/docs/yaml/
14+
#
15+
# Site settings
16+
# These are used to personalize your new site. If you look in the HTML files,
17+
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
18+
# You can create any custom variable you would like, and they will be accessible
19+
# in the templates via {{ site.myvariable }}.
20+
21+
title: My GitHub Pages Site
22+
description: >- # this means to ignore newlines until "baseurl:"
23+
This is my GitHub Pages site with a theme.
24+
baseurl: "/diviyeshpatel/blog" # the subpath of your site, e.g. /blog
25+
url: "https://diviyeshpatel.github.io" # the base hostname & protocol for your site, e.g. http://example.com
26+
github_username: diviyeshpatel
27+
28+
# Build settings
29+
theme: minima
30+
plugins:
31+
- jekyll-feed
32+
- jekyll-github-metadata
33+
34+
# Exclude from processing.
35+
# The following items will not be processed, by default.
36+
# Any item listed under the `exclude:` key here will be automatically added to
37+
# the internal "default list".
38+
#
39+
# Excluded items can be processed by explicitly listing the directories or
40+
# their entries' file path in the `include:` list.
41+
#
42+
# exclude:
43+
# - .sass-cache/
44+
# - .jekyll-cache/
45+
# - gemfiles/
46+
# - Gemfile
47+
# - Gemfile.lock
48+
# - node_modules/
49+
# - vendor/bundle/
50+
# - vendor/cache/
51+
# - vendor/gems/
52+
# - vendor/ruby/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2025-03-05 09:35:28 +0000
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
Jekyll requires blog post files to be named according to the following format:
10+
11+
`YEAR-MONTH-DAY-title.MARKUP`
12+
13+
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
14+
15+
Jekyll also offers powerful support for code snippets:
16+
17+
{% highlight ruby %}
18+
def print_hi(name)
19+
puts "Hi, #{name}"
20+
end
21+
print_hi('Tom')
22+
#=> prints 'Hi, Tom' to STDOUT.
23+
{% endhighlight %}
24+
25+
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
26+
27+
[jekyll-docs]: https://jekyllrb.com/docs/home
28+
[jekyll-gh]: https://github.com/jekyll/jekyll
29+
[jekyll-talk]: https://talk.jekyllrb.com/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2025-03-06 09:35:28 +0000
5+
categories: jekyll update
6+
---
7+
You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8+
9+
Jekyll requires blog post files to be named according to the following format:
10+
11+
`YEAR-MONTH-DAY-title.MARKUP`
12+
13+
Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works.
14+
15+
Jekyll also offers powerful support for code snippets:
16+
17+
{% highlight ruby %}
18+
def print_hi(name)
19+
puts "Hi, #{name}"
20+
end
21+
print_hi('Tom')
22+
#=> prints 'Hi, Tom' to STDOUT.
23+
{% endhighlight %}
24+
25+
Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk].
26+
27+
[jekyll-docs]: https://jekyllrb.com/docs/home
28+
[jekyll-gh]: https://github.com/jekyll/jekyll
29+
[jekyll-talk]: https://talk.jekyllrb.com/

blog/about.markdown

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: page
3+
title: About
4+
permalink: /about/
5+
---
6+
7+
<strong>Diviyesh Patel</strong> is a designer & developer, retailer & consumer merchandiser.
8+
9+
At the age of fifteen Diviyesh created websites as a hobby, which in 2004 lead over 1000 registered members.
10+
11+
During high school & 6th form, he had a huge recognition for designing and making numerous outstanding projects.
12+
13+
Diviyesh attended public schools in Yorkshire; Martin Frobisher, Altofts Middle School and St. Wilfrid’s Catholic High School & Sixth Form College.
14+
15+
Diviyesh started to create an Amazon store while studying at University in 2009.
16+
17+
In 2010, Diviyesh has achieved a Bachelor’s degree in Graphic Design at Teesside University.
18+
19+
2011, he has been working for a publishing firm, designing magazines and controlling online media.
20+
21+
2012, Diviyesh has worked in a web development company, creating websites and designing print media.
22+
23+
2013, he finished studying a FdA degree in Web Design.
24+
25+
2013 & 2014, he had been working as a Designer & Developer at an e-commerce studio.
26+
27+
During 2014, he had set up a portfolio website: <a title="www.div-bot.com" href="https://div-bot.com">div-bot.com</a> to showcase his recent work.
28+
29+
2014 to 2016, created an <a title="www.dpstore.co.uk" href="https://dpstore.co.uk">eBay store</a> and had been working as a Front End Developer at a brand and marketing agency.
30+
31+
Leaving the agency in 2016 to pursue self learning and to support himself, he had shared current tech/web, news/trends and built an online vibe sharing and collecting via social media, and in return re-invested into learning more, realising the boundaries and complexities of programming.
32+
33+
In 2017, after enough self learning, he joined a software company as a Front End Website Developer/Designer. Creating new and re-designing existing websites for a modern approach using style tile for clients preferences to building responsive and re-usable interfaces for booking systems.
34+
35+
Moving forward 2018, he joined a legal firm to help improve current internal systems by usability and accessibility to design aesthetics and shaping current technology to newer technologies using agile methodology.
36+
37+
The work he has produced made up to this date is listed on this <a title="List of websites" href="/diviyeshpatel/list-of-websites">page</a>, from recent and order of current employment to historic and in between freelance projects.
38+
39+
To contact or find out more, please visit the following:
40+
41+
<ul>
42+
<li><a title="LinkedIn Profile" href="https://linkedin.com/in/diviyesh-patel">linkedin.com/in/diviyesh-patel</a></li>
43+
<li><a title="GitHub Profile" href="https://github.com/diviyeshpatel">github.com/diviyeshpatel</a></li>
44+
</ul>
45+
46+
<!--
47+
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
48+
49+
You can find the source code for Minima at GitHub:
50+
[jekyll][jekyll-organization] /
51+
[minima](https://github.com/jekyll/minima)
52+
53+
You can find the source code for Jekyll at GitHub:
54+
[jekyll][jekyll-organization] /
55+
[jekyll](https://github.com/jekyll/jekyll)
56+
57+
58+
[jekyll-organization]: https://github.com/jekyll
59+
-->

blog/index.markdown

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
# Feel free to add content and custom Front Matter to this file.
3+
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
4+
5+
layout: home
6+
---

blog/list-of-websites.markdown

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
layout: page
3+
title: List of Websites
4+
permalink: /list-of-websites/
5+
---
6+
7+
A list of websites that I have made contributions to whether it’s design or build related, with or without developers, small to large businesses or corporate companies:
8+
9+
Roeville – <a title="Roeville" href="https://www.roeville.com">roeville.com</a>
10+
11+
Coopers Tours – <a title="Coopers Tours" href="https://www.cooperstours.co.uk">cooperstours.co.uk</a>
12+
13+
DJ Thomas – <a title="DJ Thomas" href="https://www.djthomascoaches.com">djthomascoaches.com</a>
14+
15+
Simonds – <a title="Simonds" href="https://www.simonds.co.uk">simonds.co.uk</a>
16+
17+
Daishs – <a title="Daishs" href="https://www.daishs.com/">daishs.com</a>
18+
19+
UK Breakaways – <a title="UK Breakaways" href="https://www.ukbreakaways.com">ukbreakaways.com</a>
20+
21+
National Holidays – <a title="National Holidays" href="https://www.nationalholidays.com">nationalholidays.com</a>
22+
23+
Ellen Smith – <a title="Ellen Smith" href="https://www.ellensmith.co.uk">ellensmith.co.uk</a>
24+
25+
Caledonian Travel – <a title="Caledonian Travel" href="https://www.caledoniantravel.com">caledoniantravel.com</a>
26+
27+
Grand UK Holidays – <a title="Grand UK Holidays" href="https://www.grandukholidays.com">grandukholidays.com</a>
28+
29+
Sunrise Direct – <a title="Sunrise Direct" href="https://www.sunrisedirect.com">sunrisedirect.com</a>
30+
31+
Omega Breaks – <a title="Omega Breaks" href="https://omegabreaks.com">omegabreaks.com</a>
32+
33+
JustGo Holidays – <a title="JustGo Holidays" href="https://www.justgoholidays.com">justgoholidays.com</a>
34+
35+
Crusader Holidays – <a title="Crusader Holidays" href="https://www.crusader-holidays.co.uk">crusader-holidays.co.uk</a>
36+
37+
Bowens Holidays – <a title="Bowens Holidays" href="https://www.bowensholidays.com">bowensholidays.com</a>
38+
39+
Harry Shaw – <a title="Harry Shaw" href="https://www.harryshaw.co.uk">harryshaw.co.uk</a>
40+
41+
Roberts Travel Group – <a title="Roberts Travel Group" href="https://www.robertstravelgroup.co.uk">robertstravelgroup.co.uk</a>
42+
43+
Eastons Holidays – <a title="Eastons Holidays" href="https://www.eastonsholidays.co.uk">eastonsholidays.co.uk</a>
44+
45+
Woods Coaches – <a title="Woods Coaches" href="https://www.woodscoaches.com">woodscoaches.com</a>
46+
47+
The Factory – <a title="The Factory" href="https://the-factory.co.uk">the-factory.co.uk</a>
48+
49+
Varlink – <a title="Varlink" href="https://www.varlink.co.uk">varlink.co.uk</a>
50+
51+
WSG Interiors – <a title="WSG Interiors" href="https://www.wsginteriors.co.uk">wsginteriors.co.uk</a>
52+
53+
Baldwin & Francis – <a title="Baldwin & Francis" href="https://www.baldwinandfrancis.com">baldwinandfrancis.com</a>
54+
55+
DSP-Explorer – <a title="DSP" href="https://www.dsp.co.uk/">dsp.co.uk</a>
56+
57+
Swallow Dental – <a title="Swallow Dental" href="https://www.swallowdental.co.uk">swallowdental.co.uk</a>
58+
59+
Sartomer – <a title="Sartomer Arkema" href="https://sartomer.arkema.com/">sartomer.arkema.com</a>
60+
61+
YHEC – <a title="YHEC" href="https://www.yhec.co.uk">yhec.co.uk</a>
62+
63+
Cliffe House Day Nursery – <a title="Cliffe House Day Nursery" href="https://www.cliffehousedaynurseries.co.uk">cliffehousedaynurseries.co.uk</a>
64+
65+
Telescope Group – <a title="Telescope Group" href="https://telescopegroup.co.uk/">telescopegroup.co.uk</a>
66+
67+
Origin Fertilisers – <a title="Origin Fertilisers" href="https://www.originfertilisers.co.uk">originfertilisers.co.uk</a>
68+
69+
OSI Office & School Furniture – <a title="OSI Office & School Furniture" href="https://www.osiofficefurniture.co.uk">osiofficefurniture.co.uk</a>
70+
71+
Impact Socket Supplies – <a title="Impact Socket Supplies" href="https://www.impactsocket.co.uk">impactsocket.co.uk</a>
72+
73+
Eclipse Magnetics – <a title="Eclipse Magnetics" href="https://www.eclipsemagnetics.com">eclipsemagnetics.com</a>

0 commit comments

Comments
 (0)