Skip to content

Commit

Permalink
2nd commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PharaohKJ committed Nov 7, 2024
1 parent b6f320f commit ef74113
Show file tree
Hide file tree
Showing 15 changed files with 1,404 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
_site/
.sass-cache/
.jekyll-cache/
.jekyll-metadata
Expand Down
Binary file added _site/1_fukui.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added _site/2_toyama.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions _site/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
34 changes: 34 additions & 0 deletions _site/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Evento

Evento is a minimal, responsive theme for Jekyll. The projects allows people, groups or companies to host and show a list future and past events.

### Features

* Clean layout
* Responsive layout
* Shows future and past events
* Easy for people to add events

---

### Install and Test

1. Download or clone repo `git clone [email protected]:boyney123/evento.git`
2. Enter the folder: `cd evento/`
4. Start Jekyll server: `jekyll serve`

Access via: [http://localhost:4000](http://localhost:4000)

---

### Demo and Download

[Demo](http://evento.davidboyne.co.uk)

[Download](https://github.com/boyney123/evento/archive/master.zip)

---

### Copyright and license

It is under [the MIT license](/LICENSE).
141 changes: 141 additions & 0 deletions _site/create/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Create an event using Evento</title>
<meta name="description" content="Simple Jekyll theme to host internal/external events happening in and around your area. Free free to contribute or fork the repo.
">

<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://yourdomain.com/create/">
<link rel="alternate" type="application/rss+xml" title="JAWS-UG 北陸新幹線" href="http://yourdomain.com/feed.xml">
</head>


<body>

<header class="site-header">
</header>



<div class="blog-cover" style="background-image:url('/w7-kagayaki.jpg');">

</div>


<div class="page-content">
<div class="wrapper">
<article class="post">

<header class="post-header">
<h1 class="post-title">Create an event using Evento</h1>
</header>

<div class="post-content">
<p>Adding an event to your site is easy.</p>

<p>#Getting started
Create a new .md file or copy an existing post in the <code class="language-plaintext highlighter-rouge">_posts</code> directory to get started. The post file name must be in this format:</p>

<figure class="highlight"><pre><code class="language-markdown" data-lang="markdown">YYYY-MM-DD-title.md
<span class="gh">#Example 2016-01-01-Back-At-Work-After-New-Year.md</span></code></pre></figure>

<p>#Config for posts</p>

<figure class="highlight"><pre><code class="language-markdown" data-lang="markdown"><span class="nn">---</span>
<span class="c1">#leave this alone</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>

<span class="c1">#Whats the title of your event.</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Talk</span><span class="nv"> </span><span class="s">on</span><span class="nv"> </span><span class="s">ES6</span><span class="nv"> </span><span class="s">JavaScript"</span>

<span class="c1">#Url to your cover photo for your event. [optional - default will be used if not given]</span>
<span class="na">cover</span><span class="pi">:</span> <span class="s2">"</span><span class="s">https://frontendmasters.com/assets/es6-logo.png"</span>

<span class="c1">#The date of the event. </span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2016-02-01 16:04:19 +0000</span>

<span class="c1">#Start time of the event</span>
<span class="na">start_time</span><span class="pi">:</span> <span class="s2">"</span><span class="s">12:00"</span>

<span class="c1">#end time of the event</span>
<span class="na">end_time</span><span class="pi">:</span> <span class="s2">"</span><span class="s">13:00"</span>

<span class="c1">#event organiser details</span>

<span class="c1">#event organiser details</span>
<span class="na">organiser</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Frank</span><span class="nv"> </span><span class="s">Smith"</span>

<span class="c1">#Make sure you setup your Organiser details in the _data directory in the organisers.yml file</span>

<span class="nn">---</span></code></pre></figure>

<p>#Post content</p>

<p>After you have setup your config, all you need to do know is write your content using markdown.</p>

<p>#Example Post</p>

<figure class="highlight"><pre><code class="language-markdown" data-lang="markdown"><span class="nn">---</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>

<span class="c1">#event information</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">ReactJS"</span>
<span class="na">cover</span><span class="pi">:</span> <span class="s2">"</span><span class="s">http://blog.addthiscdn.com/wp-content/uploads/2014/11/addthis-react-flux-javascript-scaling.png"</span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2016-03-28</span>
<span class="na">start_time</span><span class="pi">:</span> <span class="s2">"</span><span class="s">12:00"</span>
<span class="na">end_time</span><span class="pi">:</span> <span class="s2">"</span><span class="s">13:00"</span>

<span class="c1">#event organiser details</span>
<span class="na">organiser_email</span><span class="pi">:</span> <span class="s2">"</span><span class="s">[email protected]"</span>
<span class="na">organiser_name </span><span class="pi">:</span> <span class="s2">"</span><span class="s">David</span><span class="nv"> </span><span class="s">Boyne"</span>
<span class="na">organiser_photo</span><span class="pi">:</span> <span class="s2">"</span><span class="s">https://pbs.twimg.com/profile_images/660943257795457030/igA_joVD.jpg"</span>

<span class="nn">---</span>

I will be doing a small talk on an Introduction into ReactJS. We will cover the following:
<span class="p">
-</span> What is React?
<span class="p">-</span> How to get setup with React.
<span class="p">-</span> How to get building React Apps.
<span class="p">-</span> Bundle your application
<span class="p">-</span> Release your application

If this sounds interesting please register your interest below.</code></pre></figure>

<p>##Thats all folks
Thats all you need to do. Once the website is built again using <code class="language-plaintext highlighter-rouge">jekyll build</code> or <code class="language-plaintext highlighter-rouge">jekyll serve</code> your new event will be shown.</p>

</div>

</article>

</div>
</div>

<footer class="site-footer">

<div class="wrapper">

<h2 class="footer-heading">JAWS-UG 北陸新幹線</h2>
<p>
Simple Jekyll theme to host internal/external events happening in and around your area. Free free to contribute or fork the repo.

<a href="https://github.com/boyney123/evento"><span class="icon icon--github"><svg viewBox="0 0 16 16"><path fill="#828282" d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/></svg>
</span><span class="username">Evento</span></a>

</p>

</div>

</footer>


</body>

</html>
Loading

0 comments on commit ef74113

Please sign in to comment.