I'm using a hand made beamer theme that uses the corporate identity standards of my university. However, the \title text on the \titlepage is not set in a \block environment as it is, e.g., in the Darmstadt theme.

Is there a LaTeX command that actually toggles this feature on or off? If yes, is there a way to change the look of the \block environment of the \title without affecting the remaining \block environments on non-title-page slides?
\documentclass[handout]{beamer} % handout
\usepackage[utf8]{inputenc}
\usetheme{upb}
\setbeamercovered{transparent}
\usepackage{ragged2e} % besseren Umbruch
\usepackage{booktabs} % spezielle Tabellen zulassen
\usepackage{textpos}
\setbeamertemplate{blocks}[rounded][shadow=true]
\setbeamertemplate{title page}[rounded=true,shadow=true]
\title{Title}
\subtitle{Subtitle}
\author{phx}
\institute{University of Paderborn}
\begin{document}
\frame{\titlepage}
\end{document}
