diff --git a/_includes/repo-card.html b/_includes/repo-card.html index 560e87a934..ea511794d5 100644 --- a/_includes/repo-card.html +++ b/_includes/repo-card.html @@ -8,7 +8,7 @@

-
{{ repository.description }}
+
{{ repository.description }}
{% if repository.language %} @@ -25,8 +25,12 @@

{{ repository.forks_count }} {% endif %} -
-      site: {{ repository | jsonify | escape }}
-  
+ {% if repository.homepage %} + + + + {% octicon link height:16 %} + + {% endif %}

diff --git a/_layouts/default.html b/_layouts/default.html index a31566db2a..3b23590a7b 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -30,12 +30,4 @@

{{ page.title }}

{% endif %} -
-  site: {{ site | jsonify | escape }}
-  page: {{ page | jsonify | escape }}
-  layout: {{ layout | jsonify | escape }}
-  content: {{ content | jsonify | escape }}
-  paginator: {{ paginator | jsonify | escape }}
-
- {% include footer.html %} diff --git a/assets/styles.scss b/assets/styles.scss index 0067f167b3..dde37dc2a7 100644 --- a/assets/styles.scss +++ b/assets/styles.scss @@ -52,3 +52,8 @@ .min-height-full { min-height: 100vh; } + +.ellipsis-overflow { + text-overflow: ellipsis; + overflow: hidden; +} \ No newline at end of file