I am trying to display my own HTML file inside of a Liferay Portal. Is this possible? If it is, how do I do it?
Thanks!
How are you trying to display HTML file.? Yes, your custom html files can be loaded in liferay portal.
Download Eclipse Juno from here (already including the Liferay SDK). After that create new project in Eclipse FILE-->NEW-->Liferay Project. This will show you an additional windows to enter some details about your portlet. After you are done with this just follow this link.
Follow the tutorial and you will be ok. There they explain how to customize the look of the portlet. In the ".jsp" files you can just paste the html code and its going to work. Just dont forget to include the html tag library in your JSP file. Just paste:
<%@page contentType="text/html" pageEncoding="UTF-8"%> on top of the document and you are done!
Hope that helped!
Good luck with your portal development!