| <template> | 
|     <template if:true={showTitle}> | 
|         <template if:true={showLink}> | 
|             <p style="height: 10px;"></p> | 
|             <a style="margin-left: 10px;margin-top: 10px;margin-bottom: 10px;" onclick={clickLink}><lightning-formatted-text value={outputValue}></lightning-formatted-text></a> | 
|             <p style="height: 10px;"></p> | 
|         </template> | 
|         <template if:false={showLink}> | 
|             <div style="margin-left: 10px;margin-top: 10px;margin-bottom: 10px;font-size:16px;color:#696969;"> | 
|                 <lightning-formatted-text value={outputValue}></lightning-formatted-text> | 
|             </div> | 
|         </template> | 
|     </template> | 
|     <template if:false={showTitle}> | 
|         <div style="text-align: right;"> | 
|             <template if:true={showLink}> | 
|                 <a style="margin-left: 10px;margin-right: 10px;" onclick={clickLink}><lightning-formatted-number value={outputValue}></lightning-formatted-number></a> | 
|             </template> | 
|             <template if:false={showLink}> | 
|                 <lightning-formatted-number style="margin-left: 10px;margin-right: 10px;" value={outputValue}></lightning-formatted-number> | 
|             </template> | 
|         </div> | 
|     </template> | 
| </template> |