yes ,if you call method/function in the template ,it can lead to call the method/function many times because Angular runs change detection frequently, re-evaluating the method on every cycle. it can lead to performance issues as well on larger code bases.
As in your case getTitle() functions will execute on every change detection cycle, even if their inputs don’t change. We should avoid calling method/function directly in templates.