Skip to content

Commit 22ee2f1

Browse files
authored
Close applications for recruiting (#3)
1 parent 3bddf57 commit 22ee2f1

2 files changed

Lines changed: 14 additions & 1 deletion

File tree

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@
77
88
> This website is in Catalan due the main target audience is the UPC students.
99
10+
## Procedure to open or close applications
11+
12+
### Open applications
13+
14+
Go to the file `src/app/data/hero_data.ts` and change two parameters:
15+
16+
- **applicationsLink** should be the link to the new typeform for the current edition.
17+
- **applicationsOpen** should be **true**.
18+
19+
### Close applications
20+
21+
Go to the file `src/app/data/hero_data.ts` and change the parameter **applicationsOpen** to **false**.
22+
1023
## Change information in the landing page easily
1124

1225
This landing page have 4 sections apart from the hero and the footer. The sections are:

src/app/data/hero_data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ export const hero_data: HeroInformation = {
55
applicationsOpenTextButton: "Apunta’t ara!",
66
applicationsLink: "https://hackersatupc.typeform.com/to/wTMkorGB",
77
applicationsClosedTextButton: "Les inscripcions estan tancades",
8-
applicationsOpen: true,
8+
applicationsOpen: false,
99
};

0 commit comments

Comments
 (0)