Start adding home page
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
jgrogan 2024-08-27 08:50:59 +01:00
parent ec36e1d0d4
commit d0de126072
17 changed files with 108 additions and 4 deletions

View file

@ -5,3 +5,5 @@
<title>James Grogan</title> <title>James Grogan</title>
</head> </head>
<body> <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>

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>

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>

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>

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,9 +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/]( 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>

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,7 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
<title>James Grogan</title>
</head>
<body>