diff --git a/_data/user_manuals.json b/_data/user_manuals.json new file mode 100644 index 0000000..5e71146 --- /dev/null +++ b/_data/user_manuals.json @@ -0,0 +1,70 @@ +{ + "MakerSpace Lab": { + "link": "/equipment/user-manuals/makerspace/", + "manuals": [ + { + "title": "Tenma Oscilloscope", + "description": "300MHz Dual Trace Analog Oscilloscope", + "thumb": "#", + "urls": [ + { + "title": "User Manual", + "link": "https://drive.google.com/file/d/1JKNHXBG50qj1F-vPREiIU1kXxbLWxEI2/view?usp=drive_link" + }, + { + "title": "Specifications", + "link": "https://drive.google.com/file/d/1AQqXA7QY8HpiNYhCzNvcbh03F4CQw-LK/view?usp=drive_link" + } + ] + }, + { + "title": "Tenma Switch Mode Bench PSU", + "description": "Model: 72-8340A", + "thumb": "#", + "urls": [ + { + "title": "Instruction Manual", + "link": "https://drive.google.com/file/d/14CYosU7cW6OjB4a8aPQPyk1B8akS0LO9/view?usp=drive_link" + }, + { + "title": "Technical Specifications", + "link": "https://drive.google.com/file/d/1_hm-3SsrTo942theigiY6NXCzd3oNfVg/view?usp=drive_link" + }, + + { + "title": "Calibration Report", + "link": "https://drive.google.com/file/d/1sgSTi2DkcCs8B3hinTzdItZ7zdaPZOkM/view?usp=drive_link" + } + ] + }, + { + "title": "PRECISION Signal Generator", + "description": "Dual Channel Function/Arbitrary Waveform Generators", + "thumb": "#", + "urls": [ + { + "title": "User Manual", + "link": "https://drive.google.com/file/d/1EAHecuojuF1Dx8ERHdJFpNt0p-XSyN5K/view?usp=drive_link" + }, + { + "title": "Data Sheet", + "link": "https://drive.google.com/file/d/1LMritF-CZvWq4qAKnP_Q-pPDK-W14uBF/view?usp=drive_link" + }, + { + "title": "Programming Manual", + "link": "https://drive.google.com/file/d/1Lsx487LB7YEMNaai4D6P1EiQiX-bw2fb/view?usp=drive_link" + } + + ] + } + ] + }, + "Electronics Lab": { + "link": "/equipment/user-manuals/electronics-lab", + "manuals": [] + }, + "Networking Lab": { + "link": "/equipment/user-manuals/network-lab", + "manuals": [] + } +} \ No newline at end of file diff --git a/_layouts/QA_page.html b/_layouts/QA_page.html index c685bed..001f801 100644 --- a/_layouts/QA_page.html +++ b/_layouts/QA_page.html @@ -3,35 +3,42 @@ --- {% assign content_ = content | replace: '', '
' %} -{% assign content_ = content_ | replace: '', '

' %} + {% assign content_ = content_ | replace: '
', '
' %} {% assign content_ = content_ | replace: '', '
Q.' %} -{% assign content_ = content_ | replace: '', '
' %} + {% assign content_ = content_ | replace: '
', '' %} {% assign content_ = content_ | replace: '', '
' %} -{% assign content_ = content_ | replace: '', '
' %} + {% assign content_ = content_ | replace: '
', '' %} -{% assign content_ = content_ | replace: '

-        

{{ page.title }}

- +

{{ page.title }}

+
{{ content_ }} -
+ \ No newline at end of file diff --git a/faq/equipment/equipment.html b/faq/equipment/equipment.html index a2675b8..b6ceae0 100644 --- a/faq/equipment/equipment.html +++ b/faq/equipment/equipment.html @@ -6,6 +6,17 @@ index: 6 --- +
User Manuals
+
+
    + {%- assign manuals = site.data.user_manuals -%} + {%- for m in manuals -%} +
  • {{ m[0] }}
  • + {%- endfor -%} +
+
+ +
@@ -13,6 +24,7 @@

+ {% include qa-template.html id="1" diff --git a/faq/equipment/user-manuals/00_index.html b/faq/equipment/user-manuals/00_index.html new file mode 100644 index 0000000..96fb9bb --- /dev/null +++ b/faq/equipment/user-manuals/00_index.html @@ -0,0 +1,35 @@ +--- +layout: QA_page +permalink: "/equipment/user-manuals/" + +parent: "Equipment" +title: "User Manuals" +index: 1 +author: "Nuwan Jaliyagoda" +--- + + +

User Manuals

+
+
    + {%- assign manuals = site.data.user_manuals -%} + {%- for m in manuals -%} +
  • + {{ m[0] }} +
      + {%- for eq in m[1]['manuals'] -%} +
    • + {{ eq['title'] }}{{ eq['description'] }} +
      + {%- for url in eq['urls'] -%} + {{url['title']}} + {%- endfor -%} +
      +
    • + {%- endfor -%} +
    + +
  • + {%- endfor -%} +
+
\ No newline at end of file diff --git a/faq/equipment/user-manuals/01_makerspace.html b/faq/equipment/user-manuals/01_makerspace.html new file mode 100644 index 0000000..a052925 --- /dev/null +++ b/faq/equipment/user-manuals/01_makerspace.html @@ -0,0 +1,33 @@ +--- +layout: QA_page +permalink: /equipment/user-manuals/makerspace/ + +grand_parent: "Equipment" +parent: "User Manuals" +title: "MakerSpace Lab" + +author: "Nuwan Jaliyagoda" +--- + +{%- assign manuals = site.data.user_manuals -%} + +

User Manuals - {{ page.title }}

+ +
+ {%- for m in manuals -%} + {%- if m[0] == page.title -%} +
    + {%- for eq in m[1]['manuals'] -%} +
  • + {{ eq['title'] }}{{ eq['description'] }} +
    + {%- for url in eq['urls'] -%} + {{url['title']}} + {%- endfor -%} +
    +
  • + {%- endfor -%} +
+ {%- endif -%} + {%- endfor -%} +
\ No newline at end of file diff --git a/faq/equipment/user-manuals/02_electronics-lab.html b/faq/equipment/user-manuals/02_electronics-lab.html new file mode 100644 index 0000000..3a2e704 --- /dev/null +++ b/faq/equipment/user-manuals/02_electronics-lab.html @@ -0,0 +1,33 @@ +--- +layout: QA_page +permalink: /equipment/user-manuals/electronics-lab/ + +grand_parent: "Equipment" +parent: "User Manuals" +title: "Electronics Lab" + +author: "Nuwan Jaliyagoda" +--- + +{%- assign manuals = site.data.user_manuals -%} + +

User Manuals - {{ page.title }}

+ +
+ {%- for m in manuals -%} + {%- if m[0] == page.title -%} +
    + {%- for eq in m[1]['manuals'] -%} +
  • + {{ eq['title'] }}{{ eq['description'] }} +
    + {%- for url in eq['urls'] -%} + {{url['title']}} + {%- endfor -%} +
    +
  • + {%- endfor -%} +
+ {%- endif -%} + {%- endfor -%} +
\ No newline at end of file diff --git a/faq/equipment/user-manuals/03_network-lab.html b/faq/equipment/user-manuals/03_network-lab.html new file mode 100644 index 0000000..a2edf91 --- /dev/null +++ b/faq/equipment/user-manuals/03_network-lab.html @@ -0,0 +1,33 @@ +--- +layout: QA_page +permalink: /equipment/user-manuals/network-lab/ + +grand_parent: "Equipment" +parent: "User Manuals" +title: "Networking Lab" + +author: "Nuwan Jaliyagoda" +--- + +{%- assign manuals = site.data.user_manuals -%} + +

User Manuals - {{ page.title }}

+ +
+ {%- for m in manuals -%} + {%- if m[0] == page.title -%} +
    + {%- for eq in m[1]['manuals'] -%} +
  • + {{ eq['title'] }}{{ eq['description'] }} +
    + {%- for url in eq['urls'] -%} + {{url['title']}} + {%- endfor -%} +
    +
  • + {%- endfor -%} +
+ {%- endif -%} + {%- endfor -%} +
\ No newline at end of file