Commit 97d8814 1 parent 37da81b commit 97d8814 Copy full SHA for 97d8814
File tree 9 files changed +13
-1
lines changed
9 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ module.exports = function (eleventyConfig) {
41
41
} )
42
42
43
43
eleventyConfig . addPassthroughCopy ( '_src/assets' )
44
+ // eleventyConfig.addPassthroughCopy("_src/styles")
44
45
45
46
eleventyConfig . addNunjucksFilter ( 'bootstrapNav' , toBootstrapNav )
46
47
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript I" ,
3
3
"feedbackID" : " 02-JS-I" ,
4
4
"permalink" : " /JavaScript_I/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/02-JS-I/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS I" ,
7
8
"order" : 5
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript II" ,
3
3
"feedbackID" : " 03-JS-II" ,
4
4
"permalink" : " /JavaScript_II/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/03-JS-II/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS II" ,
7
8
"order" : 6
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript III" ,
3
3
"feedbackID" : " 04-JS-III" ,
4
4
"permalink" : " /JavaScript_III/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/04-JS-III/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS III" ,
7
8
"order" : 7
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript IV" ,
3
3
"feedbackID" : " 05-JS-IV" ,
4
4
"permalink" : " /JavaScript_IV/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/05-JS-IV/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS IV" ,
7
8
"order" : 8
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript V" ,
3
3
"feedbackID" : " 06-JS-V" ,
4
4
"permalink" : " /JavaScript_V/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/06-JS-V/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS V" ,
7
8
"order" : 9
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " JavaScript VI" ,
3
3
"feedbackID" : " 07-JS-VI" ,
4
4
"permalink" : " /JavaScript_VI/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/07-JS-VI/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " JS VI" ,
7
8
"order" : 10
Original file line number Diff line number Diff line change 2
2
"lessonTitle" : " CSS" ,
3
3
"feedbackID" : " 09-CSS-Positioning" ,
4
4
"permalink" : " /CSS/" ,
5
+ "homeworkLink" : " https://github.com/soyHenry/Prep-Course/tree/main/09-CSS-Positioning/homework" ,
5
6
"eleventyNavigation" : {
6
7
"key" : " CSS" ,
7
8
"order" : 12
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ favicon: 'https://henry-11ty-resources.s3.sa-east-1.amazonaws.com/Assets/favicon
21
21
<link rel =" stylesheet" href =" {{ 'https://henry-11ty-resources.s3.sa-east-1.amazonaws.com/Styles/code.css' | url }}" >
22
22
<link rel =" stylesheet" href =" {{ 'https://henry-11ty-resources.s3.sa-east-1.amazonaws.com/Styles/footer.css' | url }}" >
23
23
<link rel =" stylesheet" href =" {{ 'https://henry-11ty-resources.s3.sa-east-1.amazonaws.com/Styles/responsive.css' | url }}" >
24
+
24
25
<title >{{ lessonTitle }} | {{ config .repoTitle }} </title >
25
26
</head >
26
27
@@ -72,7 +73,10 @@ favicon: 'https://henry-11ty-resources.s3.sa-east-1.amazonaws.com/Assets/favicon
72
73
</div >
73
74
74
75
<div class =' lesson' >
75
- <div style =" display :flex ; justify-content : right ; right : 0 ; width : 100% ;" >
76
+ <div class =' rightBox' >
77
+ {% if homeworkLink %}
78
+ <div class =' homeworkBox' ><a href ={{homeworkLink}} target =' blank' >Homework 📝</a ></div >
79
+ {% endif %}
76
80
<div class =" readingTime" >
77
81
Tiempo de lectura {{ content | readingTime }}
78
82
</div >
You can’t perform that action at this time.
0 commit comments