$blockType->render('view') does not include view.css?
Permalink<?php $bt = BlockType::getByHandle('next_previous'); $bt->controller->nextLabel = 'Next'; $bt->controller->previousLabel = 'Previous'; $bt->controller->showArrows =1; $bt->controller->loopSequence=1; $bt->render('view');?>
Basically it renders and unstyled view of the block. Is this normal? Should I just embed the css into the view as opposed to having a separate file? Thanks.

$btnp = BlockType::getByHandle('next_previous'); $btnp->controller->outputAutoHeaderItems();
You'd be able to output them into the header (and then embed the block into the page) but that currently doesn't work. Usually what we do in this instance is just to hard-code to the stylesheets into the header (which you can do, since you're obviously hard coding the block into the template.)