Skip to content

Commit de4b67c

Browse files
committed
First jekyll draft
1 parent 3576353 commit de4b67c

25 files changed

+559
-0
lines changed

mmg_website/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_site
2+
.sass-cache
3+
.jekyll-cache
4+
.jekyll-metadata
5+
vendor

mmg_website/404.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
permalink: /404.html
3+
layout: default
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>

mmg_website/Gemfile

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.3.4"
11+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
12+
# gem "minima", "~> 2.5"
13+
gem "jekyll-theme-yat"
14+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
15+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
16+
# gem "github-pages", group: :jekyll_plugins
17+
# If you have any plugins, put them here!
18+
group :jekyll_plugins do
19+
gem "jekyll-feed", "~> 0.12"
20+
end
21+
22+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
23+
# and associated library.
24+
platforms :mingw, :x64_mingw, :mswin, :jruby do
25+
gem "tzinfo", ">= 1", "< 3"
26+
gem "tzinfo-data"
27+
end
28+
29+
# Performance-booster for watching directories on Windows
30+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
31+
32+
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
33+
# do not have a Java counterpart.
34+
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

mmg_website/Gemfile.lock

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.3.5)
8+
em-websocket (0.5.3)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0)
11+
eventmachine (1.2.7)
12+
ffi (1.17.1)
13+
forwardable-extended (2.6.0)
14+
gemoji (3.0.1)
15+
google-protobuf (3.25.5-x86_64-linux)
16+
http_parser.rb (0.8.0)
17+
i18n (1.14.7)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (4.3.4)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (~> 1.0)
24+
jekyll-sass-converter (>= 2.0, < 4.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 2.3, >= 2.3.1)
27+
kramdown-parser-gfm (~> 1.0)
28+
liquid (~> 4.0)
29+
mercenary (>= 0.3.6, < 0.5)
30+
pathutil (~> 0.9)
31+
rouge (>= 3.0, < 5.0)
32+
safe_yaml (~> 1.0)
33+
terminal-table (>= 1.8, < 4.0)
34+
webrick (~> 1.7)
35+
jekyll-feed (0.17.0)
36+
jekyll (>= 3.7, < 5.0)
37+
jekyll-paginate (1.1.0)
38+
jekyll-sass-converter (3.0.0)
39+
sass-embedded (~> 1.54)
40+
jekyll-seo-tag (2.8.0)
41+
jekyll (>= 3.8, < 5.0)
42+
jekyll-sitemap (1.4.0)
43+
jekyll (>= 3.7, < 5.0)
44+
jekyll-spaceship (0.10.2)
45+
gemoji (~> 3.0)
46+
jekyll (>= 3.6, < 5.0)
47+
nokogiri (~> 1.6)
48+
rainbow (~> 3.0)
49+
jekyll-theme-yat (1.10.0)
50+
jekyll (> 3.5, < 5.0)
51+
jekyll-feed (~> 0.9)
52+
jekyll-paginate (~> 1.1)
53+
jekyll-seo-tag (~> 2.1)
54+
jekyll-sitemap (~> 1.3)
55+
jekyll-spaceship (~> 0.2)
56+
jekyll-watch (2.2.1)
57+
listen (~> 3.0)
58+
kramdown (2.5.1)
59+
rexml (>= 3.3.9)
60+
kramdown-parser-gfm (1.1.0)
61+
kramdown (~> 2.0)
62+
liquid (4.0.4)
63+
listen (3.9.0)
64+
rb-fsevent (~> 0.10, >= 0.10.3)
65+
rb-inotify (~> 0.9, >= 0.9.10)
66+
mercenary (0.4.0)
67+
nokogiri (1.17.2-x86_64-linux)
68+
racc (~> 1.4)
69+
pathutil (0.16.2)
70+
forwardable-extended (~> 2.6)
71+
public_suffix (6.0.1)
72+
racc (1.8.1)
73+
rainbow (3.1.1)
74+
rake (13.2.1)
75+
rb-fsevent (0.11.2)
76+
rb-inotify (0.11.1)
77+
ffi (~> 1.0)
78+
rexml (3.4.0)
79+
rouge (4.5.1)
80+
safe_yaml (1.0.5)
81+
sass-embedded (1.69.5)
82+
google-protobuf (~> 3.23)
83+
rake (>= 13.0.0)
84+
terminal-table (3.0.2)
85+
unicode-display_width (>= 1.1.1, < 3)
86+
unicode-display_width (2.6.0)
87+
webrick (1.9.1)
88+
89+
PLATFORMS
90+
x86_64-linux
91+
92+
DEPENDENCIES
93+
http_parser.rb (~> 0.6.0)
94+
jekyll (~> 4.3.4)
95+
jekyll-feed (~> 0.12)
96+
jekyll-theme-yat
97+
tzinfo (>= 1, < 3)
98+
tzinfo-data
99+
wdm (~> 0.1)
100+
101+
BUNDLED WITH
102+
2.3.5

mmg_website/_config.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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: Materials Modelling Group
22+
23+
description: >- # this means to ignore newlines until "baseurl:"
24+
Write an awesome description for your new site here. You can edit this
25+
line in _config.yml. It will appear in your document head meta (for
26+
Google search results) and in your feed.xml site description.
27+
baseurl: "" # the subpath of your site, e.g. /blog
28+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
29+
twitter_username: jekyllrb
30+
github_username: jekyll
31+
32+
# Build settings
33+
# theme: minima
34+
theme: jekyll-theme-yat
35+
plugins:
36+
- jekyll-feed
37+
38+
39+
# Exclude from processing.
40+
# The following items will not be processed, by default.
41+
# Any item listed under the `exclude:` key here will be automatically added to
42+
# the internal "default list".
43+
#
44+
# Excluded items can be processed by explicitly listing the directories or
45+
# their entries' file path in the `include:` list.
46+
#
47+
# exclude:
48+
# - .sass-cache/
49+
# - .jekyll-cache/
50+
# - gemfiles/
51+
# - Gemfile
52+
# - Gemfile.lock
53+
# - node_modules/
54+
# - vendor/bundle/
55+
# - vendor/cache/
56+
# - vendor/gems/
57+
# - vendor/ruby/
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: post
3+
title: "Welcome to Jekyll!"
4+
date: 2025-01-24 14:51:57 +0300
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/ -->

mmg_website/about_us.html

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
---
2+
layout: about
3+
title: About Us
4+
---
5+
6+
<!DOCTYPE html>
7+
<html lang="en">
8+
<head>
9+
<meta charset="UTF-8">
10+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
11+
<style>
12+
.members-container {
13+
display: flex;
14+
justify-content: center;
15+
gap: 20px;
16+
text-align: center;
17+
flex-wrap: wrap;
18+
}
19+
20+
.member img {
21+
width: 300px;
22+
height: 200px;
23+
}
24+
25+
.member {
26+
text-align: center;
27+
}
28+
</style>
29+
</head>
30+
<body>
31+
<h1> {{ page.title }} </h1>
32+
<p>
33+
The materials modelling group is based at the Technical University of Kenya.
34+
We mainly perform electronic structure research for the purpose of studying and
35+
investigating properties of materials based on simulations.
36+
</p>
37+
38+
<h2> Our members </h2>
39+
<div class="members-container">
40+
<div class="member">
41+
<img src="/pictures/ProfGeorgeAmolo.JPG" alt="Prof. George Amolo" >
42+
<br>
43+
<b>Prof. George Amolo</b>
44+
</div>
45+
<!--%%%%%%%%%%%%-->
46+
<div class="member">
47+
<img src="/pictures/DrMikeAtambo.jpeg" alt="Dr. Mike Atambo">
48+
<br>
49+
<b>Dr. Mike Atambo</b>
50+
</div>
51+
<!--%%%%%%%%%%%%-->
52+
<div class="member">
53+
<img src="/pictures/DrRobertOnyancha.jpg" alt="Dr. Robert Onyancha" >
54+
<br>
55+
<b>Dr. Robert Onyancha</b>
56+
</div>
57+
<!--%%%%%%%%%%%%-->
58+
<div class="member">
59+
<img src="/pictures/Lady.jpeg" alt="Dr. Mirriam Chepkoech">
60+
<br>
61+
<b>Dr. Mirriam Chepkoech</b>
62+
</div>
63+
<!--%%%%%%%%%%%%-->
64+
<div class="member">
65+
<img src="/pictures/Lady.jpeg" alt="Dr. Gladys King'ori">
66+
<br>
67+
<b>Dr. Gladys King'ori</b>
68+
</div>
69+
<!--%%%%%%%%%%%%-->
70+
<div class="member">
71+
<img src="/pictures/Lady.jpeg" alt="Perpetua Muchiri">
72+
<br>
73+
<b>Perpetua Muchiri</b>
74+
</div>
75+
<!--%%%%%%%%%%%%-->
76+
<div class="member">
77+
<img src="/pictures/BillOyomo.jpeg" alt="Bill Clintone">
78+
<br>
79+
<b>Bill Clintone</b>
80+
</div>
81+
<!--%%%%%%%%%%%%-->
82+
<div class="member">
83+
<img src="/pictures/StephenChege.jpeg" alt="Stephen Chege">
84+
<br>
85+
<b>Stephen Chege</b>
86+
</div>
87+
<!--%%%%%%%%%%%%-->
88+
<div class="member">
89+
<img src="/pictures/Lady.jpeg" alt="Leah Wairimu">
90+
<br>
91+
<b>Leah Wairimu</b>
92+
</div>
93+
<!--%%%%%%%%%%%%-->
94+
<div class="member">
95+
<img src="/pictures/CharlesRotich.jpeg" alt="Charles Rotich">
96+
<br>
97+
<b>Charles Rotich</b>
98+
</div>
99+
100+
</div>
101+
</body>
102+
</html>
103+
104+
105+
106+
107+
<!-- 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/)
108+
109+
You can find the source code for Minima at GitHub:
110+
[jekyll][jekyll-organization] /
111+
[minima](https://github.com/jekyll/minima)
112+
113+
You can find the source code for Jekyll at GitHub:
114+
[jekyll][jekyll-organization] /
115+
[jekyll](https://github.com/jekyll/jekyll)
116+
117+
118+
[jekyll-organization]: https://github.com/jekyll -->

0 commit comments

Comments
 (0)