I'm using the Friggeri CV style, and it's not well-equipped for multiple pages. It has an aside environment, using textpos, which only appears on the first page — but the space for it exists on subsequent pages as well.
\RequirePackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
\newenvironment{aside}{%
\let\oldsection\section
\renewcommand{\section}[1]{
\par\vspace{\baselineskip}{\Large\headingfont\color{headercolor} ##1}
}
\begin{textblock}{3.6}(1.5, 4.33)
\begin{flushright}
\obeycr
}{%
\restorecr
\end{flushright}
\end{textblock}
\let\section\oldsection
}
I've figured out how to use scrpage2 to customize the page numbers between pages, but I'm not quite sure how to confine the aside spacing to only the first page. Can anyone offer a tip?