More about BlocklyCode

Published on : 11/01/24

Cool I said I was working at blockly code, but what does it mean ? Well let's dive into that shall we ?

Written by Aline

BlocklyCode Favicon

Blogging

New Project

BlocklyCode

English

Who Works at Blockly Code ?

You can see a few staff members that all have various domains where they are experts, and there is me, learning astro to try and help lol :‘)
Let’s see who we have :

Who does what ?

According to the conversation, and the github repo list showing who is supposed to work on what part :

What have I done so far ?

Not much lol :‘)
Nah but really, I took a rather deep look into the feedback section of the code as well as the css files and that’s pretty much it for the “Looking around” part
I am currently in the process of writting the first part of the .astro code, which is index.astro

---

// Import the global types
import type * as types from "../../resources/global";

//Import of page Layout
//it makes more sense in this case to call it Layout instead of Primary
import Layout from "../layouts/Primary.astro";

---

<Layout title="Feedback" page="index">
	<h1 class="h2">Template</h1>
	<p>This is the home page of my template</p>
</Layout>

<style>
    /* For now i only have the template,
    I am waiting for it to be updated to the right version before doing anything,
    in some days i'll consider it as done and will start to work on it*/
	h1 {
		text-align: left;
	}
	p {
		margin-bottom: 2rem;
		text-align: left;
	}
</style>

<script>
	//this script is run on the client side.
	//It is typescript and will be complied and minfied and bla bla
</script>