In Drupal can I create a link to just a node, so not the node page with the header, side bars, footer, etc. So the page is literally just the node's contence, no css files or anything else?
Thanks
|
In Drupal can I create a link to just a node, so not the node page with the header, side bars, footer, etc. So the page is literally just the node's contence, no css files or anything else? Thanks |
|||
|
|
|
In your theme create a page-node-1.tpl.php file. In that file just print $content;
now when you navigate to node/1 of your site you will not have anything else but the content of the node. What ever you need to add you can add around that. |
|||
|
|
|
Hum not rely, what are you trying to do? If you want to expose some data to an other service use the Services module for that, you can create a REST / Soap web service based on Drupal to expose your content. |
|||
|