diff --git a/_data/apps.yml b/_data/apps.yml
new file mode 100644
index 0000000..3b7fd38
--- /dev/null
+++ b/_data/apps.yml
@@ -0,0 +1,4 @@
+- name: Vue.js
+ logo: vue.png
+ url: https://vuejs.org
+ description: 프로그레시브 JavaScript 프레임워크
\ No newline at end of file
diff --git a/_includes/header.html b/_includes/header.html
index c500af0..193e107 100755
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -2,13 +2,13 @@
{{ site.title }}
-
-
{% if site.show_social_icons %}
{% include social_links.html %}
{% endif %}
+
+
diff --git a/_includes/navigation.html b/_includes/navigation.html
index c1e3a1c..7fca6c9 100755
--- a/_includes/navigation.html
+++ b/_includes/navigation.html
@@ -1,11 +1,14 @@
-가이드
+공식가이드
+글모음
{% for page in site.pages %}
{% if page.tags contains "about" %}
{{ page.title }}
{% endif %}
-{% endfor %}
-{% for page in site.pages %}
+ {% if page.tags contains "posts" %}
+ {{ page.title }}
+ {% endif %}
{% if page.tags contains "korean" %}
{{ page.title }}
{% endif %}
{% endfor %}
+APP소개
\ No newline at end of file
diff --git a/_sass/_apps.scss b/_sass/_apps.scss
new file mode 100644
index 0000000..410c659
--- /dev/null
+++ b/_sass/_apps.scss
@@ -0,0 +1,48 @@
+
+.app-logo-img {
+ width:30px;
+ height:30px;
+}
+
+ul.ul-app {
+ padding: 0;
+ margin: 0;
+}
+
+li.li-app {
+ list-style-type: none;
+}
+
+li.li-app a {
+ display: flex;
+ padding:10px;
+}
+li.li-app a:hover {
+ background-color:#f7f6f6;
+ cursor: pointer;
+}
+
+li.li-app .app-logo-wrap {
+ width: 50px;
+ display: inline-block;
+}
+
+li.li-app .app-logo-wrap img.app-logo-img {
+ width: 100%;
+ height: auto;
+}
+
+li.li-app span.app-name {
+ padding: 0 20px;
+ line-height:48px;
+ vertical-align: bottom;
+}
+
+li.li-app span.app-description {
+ flex: 1;
+ line-height:48px;
+ vertical-align: bottom;
+ white-space:nowrap;
+ text-overflow:ellipsis;
+ overflow: hidden;
+}
\ No newline at end of file
diff --git a/_sass/_media-queries.scss b/_sass/_media-queries.scss
index 83ff04c..c3a5e01 100755
--- a/_sass/_media-queries.scss
+++ b/_sass/_media-queries.scss
@@ -26,7 +26,7 @@
}
.site-header .site-nav {
- float: right;
+ // float: right;
margin-top: .25rem;
}
diff --git a/apps.html b/apps.html
new file mode 100644
index 0000000..dad3974
--- /dev/null
+++ b/apps.html
@@ -0,0 +1,20 @@
+---
+layout: page
+tags: apps
+---
+
+Vue로 만든 애플리케이션 소개
+
+
\ No newline at end of file
diff --git a/css/pixyll.scss b/css/pixyll.scss
index 5be8487..a13ceb3 100755
--- a/css/pixyll.scss
+++ b/css/pixyll.scss
@@ -33,3 +33,4 @@
@import 'gists';
@import 'measure';
@import 'pagination';
+@import 'apps';
diff --git a/images/apps/vue.png b/images/apps/vue.png
new file mode 100644
index 0000000..7420297
Binary files /dev/null and b/images/apps/vue.png differ