diff --git a/TEMPLATE/conf/gb.form.htmlview.conf b/TEMPLATE/conf/gb.form.htmlview.conf
new file mode 100644
index 000000000..7271353f7
--- /dev/null
+++ b/TEMPLATE/conf/gb.form.htmlview.conf
@@ -0,0 +1,80 @@
+/* Copyrights */
+#define __COPYRIGHT (c)
+#define __AUTHOR BenoƮt Minisini
+#define __EMAIL
+
+/* Name of the component */
+#define __COMPONENT gb.form.htmlview
+
+/* Name of the component with points replaced by dashes */
+#define __COMPONENT_DASH gb-form-htmlview
+
+
+/* Name of the component with points replaced by underscore */
+#define __COMPONENT_UNDERSCORE gb_form_htmlview
+
+/* Short name of the component */
+#define __NAME htmlview
+
+/* Short name of the component in uppercase */
+#define __UNAME HTMLVIEW
+
+/* Description of the component */
+#define __DESCRIPTION HTML viewer based on the litehtml library
+
+/* If the component detection uses pkg-config */
+#define __USE_PKGCONFIG 0
+
+#if __USE_PKGCONFIG
+
+/* Name of the package for pkg-config */
+#define __PKGCONFIG_NAME test-1.0
+
+/* Minimum version needed */
+#define __PKGCONFIG_VERSION 1.2.8
+
+#else /* __USE_PKGCONFIG */
+
+/* If your component uses C */
+#define __USE_C 0
+
+/* If your component uses C++ */
+#define __USE_CPLUSPLUS 1
+
+/* If your component uses multi-threading */
+#define __USE_THREAD 0
+
+/* If your component uses X-Window */
+#define __USE_XWINDOW 0
+
+/* Includes to search for */
+#define __SEARCH_INCLUDE
+
+/* Includes directories search path */
+#define __SEARCH_INCLUDE_PATH
+
+/* Includes sub-directories search */
+#define __SEARCH_INCLUDE_DIR
+
+/* Libraries to search for */
+#define __SEARCH_LIBRARY
+
+/* Libraries directories search path */
+#define __SEARCH_LIBRARY_PATH
+
+/* Libraries sub-directories search path */
+#define __SEARCH_LIBRARY_DIR
+
+/* Libraries to link with */
+#define __LIBRARY
+
+/* Includes to look for */
+#define __INCLUDE
+
+#endif /* __USE_PKGCONFIG */
+
+/* Source file list */
+#define __SOURCES main.cpp main.h
+
+/* Main C/C++ source basename in uppercase */
+#define __MAIN_UNAME MAIN