ITVantage Portal
Contents |
Control Templates
| Section | Name | Path | Description |
|---|---|---|---|
| News | Archive Template | ~\Custom\ControlTemplates\News\ArchiveTemplate.ascx | Template for the News Archive control |
| News | Details Template | ~\Custom\ControlTemplates\News\ListPageDetails.ascx | Detail Template for the News View control |
| News | List Template | ~\Custom\ControlTemplates\News\ListPageMaster.ascx | List Template for the News View control |
| Blogs | Archive Template | ~\Custom\ControlTemplates\Blogs\ArchiveTemplate.ascx | Template for the Blogs Archive control |
| Blogs | Blog Calender | ~\Custom\ControlTemplates\Blogs\BlogCalendar.ascx | Template for the Blog Calendar control |
| Blogs | Blogger List | ~\Custom\ControlTemplates\Blogs\BloggersList.ascx | Template for the Blogger List control |
| Blogs | Comments List | ~\Custom\ControlTemplates\Blogs\CommentsList.ascx | Used in other controls to template Blog Comments |
| Blogs | List Template | ~\Custom\ControlTemplates\Blogs\ContentViewItemList.ascx | Lists all the blog entries |
| Blogs | Details Template | ~\Custom\ControlTemplates\Blogs\ContentViewSingleItem.ascx | List the details for a specific blog entry |
| Blogs | Header Links Template | ~\Custom\ControlTemplates\Blogs\HeaderLinks.ascx | Not sure with this is for check into it. |
| Lists | Anchor List Template | ~\Custom\ControlTemplates\Lists\AnchorListView.ascx | Template for an Anchor List |
| Lists | Expandable List Template | ~\Custom\ControlTemplates\Lists\ExpandableListView.ascx | Template for a Expandable List |
| Lists | Lists Control Designer | ~\Custom\ControlTemplates\Lists\ListsDesignerView.ascx | Designer Template for list control |
| Lists | Selector Template | ~\Custom\ControlTemplates\Lists\ListSelectorView.ascx | Selector template used in the Lists Controls |
| Lists | Page List Template | ~\Custom\ControlTemplates\Lists\PageListView.ascx | Template used for the type of Page List |
| Lists | Rotating Expanded View | ~\Custom\ControlTemplates\Lists\RotatingListsExpandedView.ascx | Template for Rotating Expanded View |
| Lists | Rotating Simple View | ~\Custom\ControlTemplates\Lists\RotatingListsSimpleView.ascx | Template for Simple Rotating View |
| Lists | Simple View | ~\Custom\ControlTemplates\Lists\SimpleListView.ascx | Template for simple view |
| Polls | Poll Box Template | ~\Custom\ControlTemplates\Polls\PollBox.ascx | Template for the Polls control |
| Polls | Polls Results Box | ~\Custom\ControlTemplates\Polls\SimpleListView.ascx | Template for the Results Poll Box |
| Forums | Edit Post | ~\Sitefinity\ControlTemplates\Forums\EditPost.ascx | Template for the Editing Post control |
| Forums | Edit Thread | ~\Sitefinity\ControlTemplates\Forums\EditThread.ascx | Template for the Thread control |
| Forums | Forum List | ~\Sitefinity\ControlTemplates\Forums\ForumList.ascx | Template for the showing a list of Forums |
| Forums | Single Forum | ~\Sitefinity\ControlTemplates\Forums\SingleForum.ascx | Template for the a single forum |
| Forums | Single thread | ~\Sitefinity\ControlTemplates\Forums\SingleThread.ascx | Template for the a single thread |
Master Templates
Master templates are used in Sitefinity to give end users different layouts to use There are going to currently be 3 different templates.
- One Column
- Two Column Left Sidebar
- Two Column Right Sidebar
Markup
So I am thinking some of this stuff through and really most of can be done through css. Since we are dealing with situations where items get moved to a different area and they need to change dimensions because of that we can just use css to define what dimensions will need to be setup
In the markup that we are using in each of the template is the same except for what is between this tag
<div class="data"> </div>
One Column
The one column template has the following wrapper
<div class="onecolumn"> </div>
Section Title
In order to set a title section for this page above anything else the title needs to be placed in something to give it some padding from the top. Like below.
<div class="data-box"> <h2><span>[Section Title]</span><em></em></h2> </div>
Since the one two column situation doesn't require this wrapper around the title we are going to have to figure out some slight modifications in order to allow this to work with only one set of markup.
Two Column
The two column template with the sidebar to the left has the following wrapper
<div class="twocolumn"> </div>
The two column template with the sidebar to the right has the following wrapper
<div class="twocolumn01"> </div>
Section Title
Section titles for the two column markup just go like this
<h2><span>[Section Title]</span><em> </em></h2>