I'm trying to recreate something similar to this:
Where the numbering is encased inside its own box, and the content in another.
I know I could probably use a table but I was wondering if there is another way, possibly making a custom enumerate environment to accomplish this.
I did find a similar implementation, but it was accomplished by wrapping the item itself which leaves gaps between the items.
Here is some code i've tried, but it doesnt include the vertical line:
\usepackage{enumitem}
\usepackage{array}
\def\twodigits#1{%
\ifnum#1<10 0\fi
\number#1}
\fbox{
\begin{minipage}{6.5in}
\centering
\textbf{Title}
\begin{enumerate}[label={\protect\twodigits{\theenumi}.}]
\item My first item
\item My second item
\end{enumerate}
\end{minipage}
}


