-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglossary.html
More file actions
20 lines (19 loc) · 691 Bytes
/
glossary.html
File metadata and controls
20 lines (19 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: default
title: "Glossary"
description: "Isang index ng pinaka-common na technical terms sa Web development at ang simpleng paliwanag sa kanila."
permalink: /glossary/
author: teacherbuknoy
---
<h1 class="page-title">{{ page.title }}</h1>
<p class="lead">{{ page.description }}</p>
<dl class="glossary">
{% assign definitions = site.data.glossary | sort:'term' %}
{% for entry in definitions %}
<dt id="{{ entry.term | replace: ' ', '-' }}">{{ entry.term }}</dt>
<dd>{{ entry.meaning }}</dd>
{% if entry.link %}
<dd class="pull-right"><a class="btn" href="{{ entry.link }}" target="_blank" rel="noopener noreferrer">Read more...</a></dd>
{% endif %}
{% endfor %}
</dl>