Skip to content

Commit

Permalink
hc-intro fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Zaunders committed Dec 16, 2024
1 parent 332d9a6 commit d9dd7ed
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 10 deletions.
23 changes: 14 additions & 9 deletions hc-intro/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,15 +118,6 @@ <h4>Program Components</h4>
<br />This will be using scaffolding tools and we will provide you with a few different app designs to choose from to implement.</li>
</ul>

<h4>Meet your instructor</h4>
<img src="../guillem_circular.png" class="photo" style="max-width: 300px;" />
<p><b>Guillem Cordoba</b> has been building Holochain applications for several years, he has been a key contributor to both the Holochain protocol and the ecosystem as a whole. </p>
<p>Guillem has trained others on Holochain development for nearly as long. He held the community-led development programs (dev camps) and online as well as in-person Holochain intensive development courses. He is one of the world's most experienced and knowledgeable Holochain developers and an outstanding teacher. </p>

<h4>Support staff</h4>
<img src="../viktor_circular.png" class="photo" style="max-width: 300px;" />
<p>Viktor Zaunders has been organizing community events and learning environments for several years. He is a software architect that is also passionate about learning and creating spaces where people feel comfortable. He will be doing the support, administration and communications around the course to make sure that students have a great experience.</p>

<h4>Course Details</h4>
<p>This training will run online over the course of x days in the following schedule:<br />
<li>Monday</li>
Expand Down Expand Up @@ -158,7 +149,21 @@ <h4>Apply</h4>
<p>In order to create an intimate and interactive learning enviromnet where you as students have plenty of space to ask questions we are limiting this course to 10 participants. We will be running more of these courses throughout the year though so even if there is not a space for you now we will get in touch with you again when there is a new possibility to join.</p>
<p></p>We look forward to your participation and learning together!</p>
<p><a href="https://forms.gle/QPZ8yR4sYZvJtWH57" class="button">Apply Now!</a></p>


<h4>Meet your instructor</h4>
<img src="../guillem_circular.png" class="photo" style="max-width: 300px;" />
<p><b>Guillem Cordoba</b> has been building Holochain applications for several years, he has been a key contributor to both the Holochain protocol and the ecosystem as a whole. </p>
<p>Guillem has trained others on Holochain development for nearly as long. He held the community-led development programs (dev camps) and online as well as in-person Holochain intensive development courses. He is one of the world's most experienced and knowledgeable Holochain developers and an outstanding teacher. </p>

<h4>Support staff</h4>
<img src="../viktor_circular.png" class="photo" style="max-width: 300px;" />
<p>Viktor Zaunders has been organizing community events and learning environments for several years. He is a software architect that is also passionate about learning and creating spaces where people feel comfortable. He will be doing the support, administration and communications around the course to make sure that students have a great experience.</p>
<br />

<img src="../bear_circular.png" class="photo" style="max-width: 300px;" />
<p>Eric Bear is an event and community organizer with more than a decade of experience in creating learning environments. He loves creating spaces for connection and development and takes great care in helping students get set up to learn. Eric will be responsible for opening the course as well as for the closing and evaluation. </p>

<br>
<br>

Expand Down
19 changes: 18 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
import { defineConfig } from 'vite';
/* import { defineConfig } from 'vite';
export default defineConfig({
base: ''
});
*/

import { resolve } from 'path'
import { defineConfig } from 'vite';

export default defineConfig({
base: '',
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
hc_intro: resolve(__dirname, 'hc-intro/index.html'),
},
},
},
});

0 comments on commit d9dd7ed

Please sign in to comment.