Compare commits

..

2 commits

Author SHA1 Message Date
jgrogan
d0de126072 Start adding home page
Some checks are pending
/ test (push) Waiting to run
2024-08-27 08:50:59 +01:00
jgrogan
ec36e1d0d4 Add templates and some directories. 2024-08-27 08:14:54 +01:00
19 changed files with 117 additions and 3 deletions

9
src/articles/index.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

0
src/articles/index.md Normal file
View file

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

9
src/blogs/index.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

0
src/blogs/index.md Normal file
View file

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

View file

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

View file

9
src/cv.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

0
src/cv.md Normal file
View file

19
src/index.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
<h1>James Grogan Personal Site</h1>
<p>I enjoy writing software and live in the West of Ireland. My main interests are:</p>
<ul>
<li>sustainability</li>
<li>free software and open science</li>
<li>creative coding - particularly with audio and graphics.</li>
</ul>
<p>This site includes a <a href="/blogs/technical">technical</a> and <a href="/blogs/social">social</a> blog, some info on previous and on-going <a href="/projects.html">projects</a> and a <a href="/cv.html">cv</a>.</p>
<p>Personal software projects are hosted here: <a href="https://git.jmsgrogan.com/">https://git.jmsgrogan.com/</a>. Many of my work projects are open source, you can find some through my <a href="https://git.ichec.ie/jgrogan">work profile</a>.</p>
<p>I am on <a rel="me" href="https://mastodon.social/@compilz">Mastodon</a>, but not any other social media sites.</p>
</body>
</html>

View file

@ -6,8 +6,8 @@ I enjoy writing software and live in the West of Ireland. My main interests are:
* free software and open science * free software and open science
* creative coding - particularly with audio and graphics. * creative coding - particularly with audio and graphics.
This site includes a personal blog and some info on previous and on-going projects. This site includes a [technical](/blogs/technical) and [social](/blogs/social) blog, some info on previous and on-going [projects](/projects.html) and a [cv](/cv.html).
Personal software projects are hosted here: https://git.jmsgrogan.com/ My personal software projects are [self-hosted here]( https://git.jmsgrogan.com/). Many of my work projects are open source, you can find some through my [work profile](https://git.ichec.ie/jgrogan).
I am on <a rel="me" href="https://mastodon.social/@compilz">Mastodon</a> I am on <a rel="me" href="https://mastodon.social/@compilz">Mastodon</a>, but not any other social media sites.

9
src/projects.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="static/style.css">
<title>James Grogan</title>
</head>
<body>
</body>
</html>

0
src/projects.md Normal file
View file

14
src/static/style.css Normal file
View file

@ -0,0 +1,14 @@
html{
margin: 0;
padding: 0;
height: 100%
}
body{
font-size: 14px;
font-family: Verdana;
color: #333333;
padding: 20px;
max-width: 600px;
margin: 0 auto
}

View file

@ -0,0 +1,2 @@
</body>
</html>

View file

@ -0,0 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<title>James Grogan</title>
</head>
<body>