This is also a handmade title, fontispiece and halt-title pages with memoir, but the bonus is that sometimes the frontispiece image deserves a reference in the list of figures:

\documentclass{memoir}
\usepackage{graphicx,lipsum}
\title{The Nice Book Title}
\author{Nice Clever Author}
\date{\today}
\begin{document}
\frontmatter
% ------ The title page -----
\thispagestyle{empty}
\vspace{\baselineskip}
\vfill
\hbox{%
\hspace*{0.2\textwidth}%
\rule{1pt}{\textheight}
\hspace*{0.05\textwidth}%
\parbox[b]{0.75\textwidth}{
\vbox{%
\vspace{0.08\textheight}
{\noindent\HUGE\bfseries\thetitle}\\[2\baselineskip]
{\Large\itshape The also nice subtitle}\\[4\baselineskip]
{\Large\scshape\theauthor}\par
\vspace{0.5\textheight}
{\noindent The Publisher} \hfill \thedate\\[2\baselineskip]}}}
\vfill
% ---------------------------------
\pagebreak
% ------ The frontispiece page -----
\thispagestyle{empty}
\cftlocalchange{lof}{6em}{5em}
{\centering\makebox[0pt]{\includegraphics[height=.99\textheight]{example-image-9x16}}\par}
\cftaddtitleline{lof}{figure}{Sgraffito of John Milton}{frontispiece}
\cftlocalchange{lof}{1.55em}{2.55em} % return to normal settings
% ---------------------------------
\pagebreak
% ------ The halt-title page -----
\thispagestyle{empty}\setcounter{page}{1}
\vspace*{.3\textheight}{\huge\bfseries\thetitle}\par
\vspace*{.05\textheight}{\Large\scshape\theauthor}\vfill\pagebreak
% ---------------------------------
\listoffigures
\mainmatter
\chapter{The begining}
\lipsum[1-4]
\begin{figure}
\includegraphics[width=\linewidth]{example-image-a}
\caption{Image A}
\end{figure}
\lipsum[5-10]
\chapter{The end}
\lipsum[11-14]
\begin{figure}
\includegraphics[width=\linewidth]{example-image-b}
\caption{Image B}
\end{figure}
\lipsum[15-16]
\end{document}
\maketitleis just for proofs. When you want a real title page (in a generic sense), you have to do it by hand. For a series of books one can define a suitable\maketitlethat uses the provided metadata. – egreg Jul 26 '18 at 20:18