I have the following code in my beamer presentation:
\addtoreporttemplate{frametitle}{}{
\begin{tikzpicture}[overlay,remember picture,inner sep=0pt, outer sep=0pt]
\node[anchor=south,yshift=5pt] at (current page text area.south) {\includegraphics[height=0.8cm,width=\linewidth]{images/logo}};
\end{tikzpicture}}
\title{My Presentation}
\author{me}
\date{
\begin{tikzpicture}[overlay,remember picture,inner sep=0pt, outer sep=0pt]
\node[anchor=south,yshift=5pt] at (current page text area.south) {\includegraphics[height=0.8cm,width=\linewidth]{images/logo}};
\end{tikzpicture}}
What i want to know is if there is a similar command for reports/articles, etc, i.e., like:
\addtoreporttemplate{}{
\begin{tikzpicture}[overlay,remember picture,inner sep=0pt, outer sep=0pt]
\node[anchor=south,yshift=5pt] at (current page text area.south) {\includegraphics[height=0.8cm,width=\linewidth]{images/logo}};
\end{tikzpicture}}
So that my logo would be added to everypage.
I tried using fancy header, but the logo isn't added to my cover page.

\thispagestyle{fancy}– samcarter_is_at_topanswers.xyz Apr 04 '17 at 11:13