You don't have an easy or intuitive way to go back to the home page. On most websites, clicking the logo will take you back. Not a single element shown will take you back.
Solution, in the theme, the logo is a separate img. Simply wrap the img tag inside an anchor tag pointing/linking/referencing the root of the website /.
If you'd like, you could construct the url of the base. With Drupal you could use
global $base_root;
print $base_root;
which would give you the base.
If you reach a "Page Not Found" error on the website, for example:
Link: http://www.fortaleza.pr.gov/asldfasdflaksdfjlaksdfj
You don't have an easy or intuitive way to go back to the home page. On most websites, clicking the logo will take you back. Not a single element shown will take you back.
Solution, in the theme, the logo is a separate img. Simply wrap the img tag inside an anchor tag pointing/linking/referencing the root of the website /.
If you'd like, you could construct the url of the base. With Drupal you could use
global $base_root; print $base_root;
which would give you the base.
There are multiple ways in which it can be done.