diff --git a/theme/modules/list.module/module.html b/theme/modules/list.module/module.html
index 1c85654..aa7c8f8 100644
--- a/theme/modules/list.module/module.html
+++ b/theme/modules/list.module/module.html
@@ -1,27 +1,9 @@
-{% require_css %}
-
-{% end_require_css %}
-
-
-
+
+
{% for item in module.list_items %}
- -
-
+
-
+
{% set current_icon = not module.enable_global_icons ? item.individual_item_icon : module.global_icon %}
{% set current_icon_color = not module.enable_global_icon_color ? item.individual_icon_color : module.global_icon_color %}
@@ -38,13 +20,7 @@
-
- {% if module.enable_rich_text %}
- {% inline_rich_text field="item_rich_text" value="{{ item.item_rich_text }}" %}
- {% else %}
- {% inline_text field="item_text" value="{{ item.item_text }}" %}
- {% endif %}
-
+ {{ module.enable_rich_text ? item.item_rich_text : item.item_text }}
{% endfor %}