1
Hello
I'm trying to adapt
this theme.J 'have managed to adapt it to xoops (
see here)
But this theme is special because it has a content page. For example, to the contact page, the HTML content is as below:
<div class="panel" id="contact"> <h2>Contact Informationh2> <div class="cleaner_h10">div> <div class="col_400 float_l"> <div id="contact_form"> <form method="post" name="contact" action="#contact"> <label for="author">Name:label> <input type="text" id="author" name="author" class="required input_field" /> <div class="cleaner_h10">div> <label for="email">Email:label> <input type="text" id="email" name="email" class="validate-email required input_field" /> <div class="cleaner_h10">div> <label for="text">Message:label> <textarea id="text" name="text" rows="0" cols="0" class="required">textarea> <div class="cleaner_h10">div> <input type="submit" class="submit_btn float_l" name="submit" id="submit" value="Send" /> <input type="reset" class="submit_btn float_r" name="reset" id="reset" value="Reset" /> form> div>
Wanting to work with xoops modules, I would therefore incorporated in place of the contact system html module contact.
The problem is that this module does not block so I can not put a block of type <{block id = 1}> for ease of viewing.
So I thought to copy the html template of the contact module but it does not work either. No parameters are taken into account.
Is there a way to display a module that does not block?
thank you