Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed07cc5

Browse files
authored
Merge branch 'master' into slider
2 parents a99dbb5 + a8e205e commit ed07cc5

18 files changed

+411
-48
lines changed

.github/workflows/main.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: CI
2+
3+
# Controls when the action will run. Triggers the workflow on push or pull request
4+
# events but only for the master branch
5+
on:
6+
push:
7+
branches: [ master ]
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: '10'
17+
- name: Install Dependencies
18+
run: npm install
19+
- name: Build
20+
run: npm run build
21+
- name: Create temp Directory
22+
uses: appleboy/ssh-action@master
23+
with:
24+
host: ${{ secrets.HOST }}
25+
username: ${{ secrets.USERNAME }}
26+
key: ${{ secrets.PRIVATE_KEY }}
27+
script: mkdir -p ~/frontends/codingblocks.com/temp
28+
- name: Upload Build
29+
uses: appleboy/scp-action@master
30+
with:
31+
host: ${{ secrets.HOST }}
32+
username: ${{ secrets.USERNAME }}
33+
key: ${{ secrets.PRIVATE_KEY }}
34+
source: "dist"
35+
target: "frontends/codingblocks.com"
36+
- name: Replace New Build
37+
uses: appleboy/ssh-action@master
38+
with:
39+
host: ${{ secrets.HOST }}
40+
username: ${{ secrets.USERNAME }}
41+
key: ${{ secrets.PRIVATE_KEY }}
42+
script: ln -sfn ~/frontends/codingblocks.com/dist ~/frontends/codingblocks.com/current && rm -rf ~/frontends/codingblocks.com/live/* && cp -rf ~/frontends/codingblocks.com/dist/* ~/frontends/codingblocks.com/live/ && ln -sfn ~/frontends/codingblocks.com/live ~/frontends/codingblocks.com/current && rm -rf ~/frontends/codingblocks.com/dist
133 KB
Loading
191 KB
Loading
230 KB
Loading

src/classroom-program.hbs

Lines changed: 312 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,312 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<title>{{title}}</title>
6+
{{> meta}}
7+
{{> head}}
8+
<style>
9+
body {
10+
padding: 0;
11+
}
12+
13+
h1,
14+
h2,
15+
h3,
16+
h4,
17+
h5,
18+
h6 {
19+
font-family: "Gilroy", "Nunito Sans", sans-serif;
20+
}
21+
</style>
22+
23+
<script>
24+
window.scrollNow = function (target) {
25+
var scrollContainer = target;
26+
do { //find scroll container
27+
scrollContainer = scrollContainer.parentNode;
28+
if (!scrollContainer) return;
29+
scrollContainer.scrollTop += 1;
30+
} while (scrollContainer.scrollTop == 0);
31+
32+
var targetY = 0;
33+
do {
34+
// Find the top of target relatively to the container
35+
if (target == scrollContainer) break;
36+
targetY += target.offsetTop;
37+
} while (target = target.offsetParent);
38+
39+
scroll = function (c, a, b, i) {
40+
i++; if (i > 30) return;
41+
c.scrollTop = a + (b - a) / 30 * i;
42+
setTimeout(function () { scroll(c, a, b, i); }, 20);
43+
}
44+
// Scroll to target
45+
scroll(scrollContainer, scrollContainer.scrollTop, targetY, 0);
46+
}
47+
</script>
48+
</head>
49+
50+
<body class="scroll-assist" style="line-height: unset;">
51+
{{> navbar}}
52+
</br>
53+
</br>
54+
</br>
55+
</br>
56+
<div class="a-cbm">
57+
<div class="classroom-courses-page">
58+
<div style="background: #007DFE;" class="py-50 white">
59+
<div class="container">
60+
<div class="row no-gutters align-items-center justify-content-between">
61+
<div class="col-lg-6 col-md-4">
62+
<div class="heading-3 mb-20">Much Awaited</div>
63+
<div class="bold mb-20" style="font-size: 4rem;">Classroom Courses are back</div>
64+
<div class="font-5 bold v-align-ma mb-20">
65+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/map-pin.svg">
66+
<span>Noida</span>
67+
</div>
68+
<button class="button-primary button-primary--white mb-20" type="button"
69+
onclick="scrollNow(document.getElementById('courses'))">Enroll Now</button>
70+
<div class="font-4">
71+
Only limited seats as a precautionary measure
72+
</div>
73+
</div>
74+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-vector-final.svg"
75+
style="margin-right: -75px;">
76+
</div>
77+
</div>
78+
</div>
79+
<div class="container pt-50 pb-25" id="courses">
80+
<div class="heading-3 bold t-align-c mb-30">Courses</div>
81+
<div class="row justify-content-center">
82+
<div class="col-md-4 col-sm-10 col-12 h-inherit mb-25">
83+
<div class="card card--theme-blue t-align-c h-100">
84+
<div class="flex-col h-100 w-100 justify-content-between">
85+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-cpp.svg" class="mb-25">
86+
<div class="w-100">
87+
<div class="heading-6 bold mb-10">C++ Classroom Program</div>
88+
<div class="mb-20 font-1">
89+
Learn in-depth the algorithms of one of the most powerful and portable programming languages C++
90+
</div>
91+
<div class="round s-40x40 mb-10 mx-auto">
92+
<img src="https://images.codingblocks.com/img/pandey.jpeg">
93+
</div>
94+
<div class="font-1 mb-20">
95+
Mentor <br />
96+
<strong>Mohit Pandey</strong>
97+
</div>
98+
<div class="mb-10">
99+
Starting on
100+
<strong>31th Jan</strong>
101+
</div>
102+
<div class="font-1 highlight-text mb-20">Weekend Batch</div>
103+
<div class="mb-10 row no-gutters align-items-center justify-content-center">
104+
<div class="text-grey bold heading-6 mr-10">&#8377; 12750</div>
105+
<div class="text-grey-light-1 bold font-4">&#8377; 16999</div>
106+
</div>
107+
<a href="https://dukaan.codingblocks.com/buy?productId=4476" class="button-primary mb-10">Enroll
108+
Now</a>
109+
</div>
110+
</div>
111+
</div>
112+
</div>
113+
<div class="col-md-4 col-sm-10 col-12 h-inherit mb-25">
114+
<div class="card card--theme-purple t-align-c h-100">
115+
<div class="flex-col w-100 h-100 justify-content-between">
116+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-java.svg" class="mb-25">
117+
<div class="w-100">
118+
<div class="heading-6 bold mb-10">Java Classroom Program</div>
119+
<div class="mb-20 font-1">
120+
This course offers concepts of DS and Algorithms with the right grasp of the rich API and powerful
121+
development tools of programming
122+
</div>
123+
<div class="round s-40x40 mb-10 mx-auto">
124+
<img src="https://images.codingblocks.com/img/momu.jpeg">
125+
</div>
126+
<div class="font-1 mb-20">
127+
Mentor <br />
128+
<strong>Monu Kumar</strong>
129+
</div>
130+
<div class="mb-10">
131+
Starting on
132+
<strong>31th Jan</strong>
133+
</div>
134+
<div class="font-1 highlight-text mb-20">Weekend Batch</div>
135+
<div class="mb-10 row no-gutters align-items-center justify-content-center">
136+
<div class="text-grey bold heading-6 mr-10">&#8377; 12750</div>
137+
<div class="text-grey-light-1 bold font-4">&#8377; 16999</div>
138+
</div>
139+
<a href="https://dukaan.codingblocks.com/buy?productId=4477" class="button-primary mb-10">Enroll
140+
Now</a>
141+
</div>
142+
</div>
143+
</div>
144+
</div>
145+
<div class="col-md-4 col-sm-10 col-12 h-inherit mb-25">
146+
<div class="card card--theme-orange t-align-c h-100">
147+
<div class="flex-col h-100 w-100 justify-content-between">
148+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-ml.svg" class="mb-25">
149+
<div class="w-100">
150+
<div class="heading-6 bold mb-10">Data Science Classroom Program</div>
151+
<div class="mb-20 font-1">
152+
This course will revolve around the concepts of Python, Machine Learning, Data Cleaning and Data
153+
Analysis.
154+
</div>
155+
<div class="round s-40x40 mb-10 mx-auto">
156+
<img src="https://minio.codingblocks.com/amoeba/3efe881b-87ca-411e-a83b-671343eab041">
157+
</div>
158+
<div class="font-1 mb-20">
159+
Mentor <br />
160+
<strong>Manu S Pilai</strong>
161+
</div>
162+
<div class="mb-10">
163+
Starting on
164+
<strong>31th Jan</strong>
165+
</div>
166+
<div class="font-1 highlight-text mb-20">Weekend Batch</div>
167+
<div class="mb-10 row no-gutters align-items-center justify-content-center">
168+
<div class="text-grey bold heading-6 mr-10">&#8377; 18750</div>
169+
<div class="text-grey-light-1 bold font-4">&#8377; 25000</div>
170+
</div>
171+
<a href="https://dukaan.codingblocks.com/buy?productId=4480" class="button-primary mb-10">Enroll
172+
Now</a>
173+
</div>
174+
</div>
175+
</div>
176+
</div>
177+
<div class="col-md-4 col-sm-10 col-12 h-inherit mb-25">
178+
<div class="card card--theme-blue t-align-c h-100">
179+
<div class="flex-col h-100 w-100 justify-content-between">
180+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-cpp.svg" class="mb-25">
181+
<div class="w-100">
182+
<div class="heading-6 bold mb-10">Algo++ Data Structures & Algorithms-</div>
183+
<div class="mb-20 font-1">
184+
The course provides a firm base for students to excel in all their programming interviews by
185+
building an efficient approach to finding optimized solutions
186+
</div>
187+
<div class="round s-40x40 mb-10 mx-auto">
188+
<img src="https://images.codingblocks.com/img/pandey.jpeg">
189+
</div>
190+
<div class="font-1 mb-20">
191+
Mentor <br />
192+
<strong>Mohit Pandey</strong>
193+
</div>
194+
<div class="mb-10">
195+
Starting on
196+
<strong>31th Jan</strong>
197+
</div>
198+
<div class="font-1 highlight-text mb-20">Weekend Batch</div>
199+
<div class="mb-10 row no-gutters align-items-center justify-content-center">
200+
<div class="text-grey bold heading-6 mr-10">&#8377; 8999</div>
201+
<div class="text-grey-light-1 bold font-4">&#8377; 11999</div>
202+
</div>
203+
<a href="https://dukaan.codingblocks.com/buy?productId=4478" class="button-primary mb-10">Enroll
204+
Now</a>
205+
</div>
206+
</div>
207+
</div>
208+
</div>
209+
<div class="col-md-4 col-sm-10 col-12 h-inherit mb-25">
210+
<div class="card card--theme-purple t-align-c h-100">
211+
<div class="flex-col h-100 w-100 justify-content-between">
212+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-java.svg" class="mb-25">
213+
<div class="w-100">
214+
<div class="heading-6 bold mb-10">Algo.Java | Data Structures and Algorithms</div>
215+
<div class="mb-20 font-1">
216+
A complete package for all the budding programmers who aspire to gain expertise in Data Structures
217+
and Algorithms or are appearing for their internship/placement interviews.
218+
</div>
219+
<div class="round s-40x40 mb-10 mx-auto">
220+
<img src="https://images.codingblocks.com/img/momu.jpeg">
221+
</div>
222+
<div class="font-1 mb-20">
223+
Mentor <br />
224+
<strong>Monu Kumar</strong>
225+
</div>
226+
<div class="mb-10">
227+
Starting on
228+
<strong>31th Jan</strong>
229+
</div>
230+
<div class="font-1 highlight-text mb-20">Weekend Batch</div>
231+
<div class="mb-10 row no-gutters align-items-center justify-content-center">
232+
<div class="text-grey bold heading-6 mr-10">&#8377; 8999</div>
233+
<div class="text-grey-light-1 bold font-4">&#8377; 11999</div>
234+
</div>
235+
<a href="https://dukaan.codingblocks.com/buy?productId=4479" class="button-primary mb-10">Enroll
236+
Now</a>
237+
</div>
238+
</div>
239+
</div>
240+
</div>
241+
</div>
242+
<div class="t-align-c my-50">
243+
<div class="heading-3 bold mb-15">With the ultimate safety measures</div>
244+
<div class="font-4">
245+
Keeping in mind the current <strong>COVID - 19</strong> scenario, we have made sure that we provide the
246+
safest
247+
environment for students
248+
</div>
249+
</div>
250+
<div class="position-relative class-flow">
251+
<div class="class-flow__text-1 position-absolute">
252+
<div>Classroom sanitized</div>
253+
<div>before every class!</div>
254+
</div>
255+
<div class="class-flow__text-2 position-absolute">
256+
<div>Temperature</div>
257+
<div>Monitoring</div>
258+
</div>
259+
<div class="class-flow__text-3 position-absolute">
260+
<div>Mandatory sanitizing</div>
261+
<div>before entering the classroom</div>
262+
</div>
263+
<div class="class-flow__text-4 position-absolute">
264+
<div>Maintaining the</div>
265+
<div>6 - feet apart rule</div>
266+
</div>
267+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-class-flow.svg" class="w-100">
268+
</div>
269+
</div>
270+
<div style="background: #007DFE;" class="py-50 white">
271+
<div class="container">
272+
<div class="heading-3 bold t-align-c">Were you missing the classroom experience?</div>
273+
<div class="row align-items-center my-50">
274+
<div class="col-sm-4 col-12 mb-sm-none mb-25">
275+
<div class="card bg-white all-center t-align-c">
276+
<div>
277+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-hands-on.svg" class="mb-15">
278+
<div class="font-4 bold black">Hands on Coding sessions</div>
279+
</div>
280+
</div>
281+
</div>
282+
<div class="col-sm-4 col-12 mb-sm-none mb-25">
283+
<div class="card bg-white all-center t-align-c">
284+
<div>
285+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-atmosphere.svg" class="mb-15">
286+
<div class="font-4 bold black">Competetive Atmosphere</div>
287+
</div>
288+
</div>
289+
</div>
290+
<div class="col-sm-4 col-12">
291+
<div class="card bg-white all-center t-align-c">
292+
<div>
293+
<img src="https://cb-thumbnails.s3.ap-south-1.amazonaws.com/classroom-doubts.svg" class="mb-15">
294+
<div class="font-4 bold black">After Class Doubt Sessions</div>
295+
</div>
296+
</div>
297+
</div>
298+
</div>
299+
<div class="t-align-c">
300+
<button class="button-primary button-primary--white mb-20" type="button"
301+
onclick="scrollNow(document.getElementById('courses'))">Enroll Now</button>
302+
<div class="font-2">Only limited seats available<br />as a precautionary measure</div>
303+
</div>
304+
</div>
305+
</div>
306+
</div>
307+
</div>
308+
{{> scripts}}
309+
310+
</body>
311+
312+
</html>

0 commit comments

Comments
 (0)