site/index.html

97 lines
4.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>andrew conlin</title>
<link href="https://use.fontawesome.com/releases/v5.0.2/css/all.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap');
a {
color: white;
}
body {
background-color: black;
color: white;
font-family: "Rubik";
}
</style>
</head>
<body>
<div class="container text-start">
<h1 class="display-1" style="font-weight:700;">
ac
</h1>
<div class="row row-cols-1 row-cols-md-2">
<div class="col col-md-2">
<div class="row row-cols-1 g-0">
<div class="col">
<h4>
<a href="about.html" class="text-decoration-none"> about </a>
</h4>
</div>
<div class="col">
<h4>
<a href="blog.html" class="text-decoration-none"> blog </a>
</h4>
</div>
<div class="col">
<h4>
<a href="http://andrewconlinphotography.co.uk" class="text-decoration-none"> photos </a>
</h4>
</div>
<div class="col gy-2">
<h4>
<div>
<span>
<a href="https://twitter.com/andrwcnln" target="_blank"><i
class="fab fa-twitter"></i></a>
<a href="https://instagram.com/conlinsta" target="_blank"><i
class="fab fa-instagram"></i></a>
<a href="https://github.com/andrwcnln" target="_blank"><i
class="fab fa-github"></i></a>
<a href="https://www.strava.com/athletes/57896512" target="_blank"><i
class="fab fa-strava"></i></a>
<a href="https://open.spotify.com/user/1135508731?si=61zWbsqmT92LdT0JA5bAKw"
target="_blank"><i class="fab fa-spotify"></i></a>
</span>
</div>
</h4>
</div>
<hr>
</div>
</div>
<div class="col col-md-10">
<h1 style="font-weight: 500;">
Fixing php errors when trying to use occ in a Nextcloud Docker installation
</h1>
<small style="font-family:Rubik Mono One;">
wednesday 1st march 2023, 8:02pm<br>
</small>
<br>
<p id="md">
</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
fetch("nextcloud-php-errors.md") // The path to the raw Markdown file
.then(response => response.blob()) // Unwrap to a blob...
.then(blob => blob.text()) // ...then to raw text...
.then(markdown => { // ...then pass the raw text into marked.parse
document.getElementById("md").innerHTML = marked.parse(markdown);
});
</script>
</body>
</html>