2019-10-15 09:22:08 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2019-10-20 19:25:13 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-10-20 20:47:19 +02:00
|
|
|
<link rel="manifest" href="/manifest.json">
|
2019-10-20 20:57:39 +02:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/icon-180.png">
|
2020-07-17 19:29:18 +02:00
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
2019-10-20 20:47:19 +02:00
|
|
|
<title>Facebook Event to iCal Converter</title>
|
2019-10-15 09:22:08 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-10-20 20:57:39 +02:00
|
|
|
<header>
|
|
|
|
<a id="current-download" href="javascript:void(0)"></a>
|
2019-10-24 21:29:28 +02:00
|
|
|
<img id="logo" src="/icon-512.png" />
|
2019-10-20 20:57:39 +02:00
|
|
|
<h1>Facebook Events to iCal Converter</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<article id="main">
|
|
|
|
<p>
|
2019-10-23 22:29:01 +02:00
|
|
|
Insert Facebook event URL / event number into the form.
|
|
|
|
When you submit it you will get <a href="https://en.wikipedia.org/wiki/ICalendar"><code>ics</code></a>
|
|
|
|
file that you can import into your calendar. <strong>Only public events are supported.</strong>
|
2019-10-20 20:57:39 +02:00
|
|
|
</p>
|
|
|
|
|
2020-07-17 22:33:57 +02:00
|
|
|
<noscript>
|
|
|
|
<div id="nojs" class="notice">
|
|
|
|
🤚 JavaScript is <em>disabled</em>. Enable to get full experience and offline capabilities.
|
|
|
|
</div>
|
2020-12-20 13:50:12 +01:00
|
|
|
<form action='/download' method='POST' id="form">
|
|
|
|
<input
|
|
|
|
required
|
|
|
|
pattern="^(http:\/\/www\.|https:\/\/www\.|http:\/\/|https:\/\/)?[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(:[0-9]{1,5})?(\/.*)?|\d+$"
|
|
|
|
id="url"
|
|
|
|
name="url"
|
|
|
|
placeholder="Paste / type FB event URL or event number..."
|
|
|
|
title="Please insert Facebook Event URL / Number"
|
|
|
|
/>
|
|
|
|
<input id="submit" type='submit' value='Submit' />
|
|
|
|
</form>
|
|
|
|
|
2020-07-17 22:33:57 +02:00
|
|
|
</noscript>
|
|
|
|
|
2020-12-15 22:56:39 +01:00
|
|
|
<div id="root"></div>
|
2019-10-20 20:57:39 +02:00
|
|
|
</article>
|
2020-12-15 10:23:20 +01:00
|
|
|
|
2019-10-20 20:57:39 +02:00
|
|
|
<footer>
|
2020-07-17 19:29:18 +02:00
|
|
|
v.<%= htmlWebpackPlugin.options.version %> ◆
|
2019-11-14 09:11:09 +01:00
|
|
|
<a href="https://ondrejsynacek.com" target="_blank">Ondrej Synacek</a> (2019) ◆
|
2019-10-24 20:45:34 +02:00
|
|
|
<a href="https://github.com/comatory/fb2iCal" target="_blank" title="Github">Source</a> ◆
|
2020-12-23 22:05:30 +01:00
|
|
|
<a href="/about" target="_blank" title="About the project">About</a>
|
2019-10-20 20:57:39 +02:00
|
|
|
</footer>
|
2020-11-15 15:13:49 +01:00
|
|
|
|
|
|
|
<script>
|
|
|
|
window.__firebaseConfiguration__ = {
|
|
|
|
serverUrl: "<%= htmlWebpackPlugin.options.serverURL %>",
|
|
|
|
}
|
|
|
|
</script>
|
2019-10-15 09:22:08 +02:00
|
|
|
</body>
|
|
|
|
</html>
|