diff --git a/index.html b/index.html
index 7e45fb0..9882f39 100644
--- a/index.html
+++ b/index.html
@@ -40,7 +40,7 @@ projects:
- name: tfdclerk
langs: JavaScript
started: August 2015
- incomplete: yes
+ abandoned: yes
description: An English Wikipedia user script to automate common templates for discussion operations, including closures and relisting
- name: oriadnos
repo: VjiaoBlack/Oriadnos
@@ -125,7 +125,7 @@ projects:
{% for project in page.projects["highlights"] %}
-
- {{ project.name }} ({{ project.langs }} // started {{ project.started }}{% if project.incomplete %} // in development{% endif %})
+ {{ project.name }} ({{ project.langs }} // started {{ project.started }}{% if project.incomplete %} // in development{% endif %}{% if project.abandoned %} // abandoned{% endif %})
{{ project.description }}
{% endfor %}
@@ -134,7 +134,7 @@ projects:
{% for project in page.projects["others"] %}
-
- {{ project.name }} ({{ project.langs }} // started {{ project.started }}{% if project.incomplete %} // in development{% endif %})
+ {{ project.name }} ({{ project.langs }} // started {{ project.started }}{% if project.incomplete %} // in development{% endif %}{% if project.abandoned %} // abandoned{% endif %})
{{ project.description }}
{% endfor %}
diff --git a/static/main.css b/static/main.css
index 7bfc5f4..9d019b1 100644
--- a/static/main.css
+++ b/static/main.css
@@ -132,7 +132,7 @@ p#bio {
font-size: 14px;
}
-.incomplete {
+.incomplete, .abandoned {
color: #777;
}